Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
InterfaceIndex
int System.Net.Sockets.MulticastOption.InterfaceIndex
get
set
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
;
49
_ifIndex
=
value
;
50
}
51
}
System.Net.Sockets.MulticastOption._ifIndex
int _ifIndex
Definition
MulticastOption.cs:9
System.Net.Sockets.MulticastOption._localAddress
IPAddress _localAddress
Definition
MulticastOption.cs:7
System.ExceptionArgument.value
@ value
System
Net
Sockets
MulticastOption
Generated by
1.10.0