6 instantiations of ReadOnlyIPAddress
System.Net.Primitives (6)
System\Net\IPAddress.cs (6)
22public static readonly IPAddress Any = new ReadOnlyIPAddress([0, 0, 0, 0]); 23public static readonly IPAddress Loopback = new ReadOnlyIPAddress([127, 0, 0, 1]); 24public static readonly IPAddress Broadcast = new ReadOnlyIPAddress([255, 255, 255, 255]); 29public static readonly IPAddress IPv6Any = new ReadOnlyIPAddress([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 0); 30public static readonly IPAddress IPv6Loopback = new ReadOnlyIPAddress([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], 0); 33private 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)
439if (this is ReadOnlyIPAddress) 669if (this is ReadOnlyIPAddress)