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

◆ IsIPv6Multicast

bool System.Net.IPAddress.IsIPv6Multicast
getinherited

Definition at line 123 of file IPAddress.cs.

124 {
125 get
126 {
127 if (IsIPv6)
128 {
129 return (_numbers[0] & 0xFF00) == 65280;
130 }
131 return false;
132 }
133 }
readonly ushort[] _numbers
Definition IPAddress.cs:49