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

◆ IsIPv6UniqueLocal

bool System.Net.IPAddress.IsIPv6UniqueLocal
getinherited

Definition at line 171 of file IPAddress.cs.

172 {
173 get
174 {
175 if (IsIPv6)
176 {
177 return (_numbers[0] & 0xFE00) == 64512;
178 }
179 return false;
180 }
181 }
readonly ushort[] _numbers
Definition IPAddress.cs:49