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

◆ InterfaceIndex

int System.Net.Sockets.MulticastOption.InterfaceIndex
getset

Definition at line 36 of file MulticastOption.cs.

37 {
38 get
39 {
40 return _ifIndex;
41 }
42 set
43 {
44 if (value < 0 || value > 16777215)
45 {
46 throw new ArgumentOutOfRangeException("value");
47 }
48 _localAddress = null;
50 }
51 }