6 instantiations of ReadOnlyIPAddress
System.Net.Primitives (6)
System\Net\IPAddress.cs (6)
24public static readonly IPAddress Any = new ReadOnlyIPAddress([0, 0, 0, 0]); 25public static readonly IPAddress Loopback = new ReadOnlyIPAddress([127, 0, 0, 1]); 26public static readonly IPAddress Broadcast = new ReadOnlyIPAddress([255, 255, 255, 255]); 31public static readonly IPAddress IPv6Any = new ReadOnlyIPAddress([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 0); 32public static readonly IPAddress IPv6Loopback = new ReadOnlyIPAddress([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], 0); 35private static readonly IPAddress s_loopbackMappedToIPv6 = new ReadOnlyIPAddress([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 127, 0, 0, 1], 0);
2 references to ReadOnlyIPAddress
System.Net.Primitives (2)
System\Net\IPAddress.cs (2)
441if (this is ReadOnlyIPAddress) 671if (this is ReadOnlyIPAddress)