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