Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IPv6MulticastOption() [1/2]

System.Net.Sockets.IPv6MulticastOption.IPv6MulticastOption ( IPAddress group,
long ifindex )
inline

Definition at line 37 of file IPv6MulticastOption.cs.

38 {
39 if (group == null)
40 {
41 throw new ArgumentNullException("group");
42 }
43 if (ifindex < 0 || ifindex > uint.MaxValue)
44 {
45 throw new ArgumentOutOfRangeException("ifindex");
46 }
47 _group = group;
48 InterfaceIndex = ifindex;
49 }

References System.Net.Sockets.IPv6MulticastOption._group, and System.Net.Sockets.IPv6MulticastOption.InterfaceIndex.