6 instantiations of ReadOnlyIPAddress
System.Net.Primitives (6)
System\Net\IPAddress.cs (6)
24
public static readonly IPAddress Any = new
ReadOnlyIPAddress
([0, 0, 0, 0]);
25
public static readonly IPAddress Loopback = new
ReadOnlyIPAddress
([127, 0, 0, 1]);
26
public static readonly IPAddress Broadcast = new
ReadOnlyIPAddress
([255, 255, 255, 255]);
31
public static readonly IPAddress IPv6Any = new
ReadOnlyIPAddress
([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 0);
32
public static readonly IPAddress IPv6Loopback = new
ReadOnlyIPAddress
([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], 0);
35
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)
441
if (this is
ReadOnlyIPAddress
)
671
if (this is
ReadOnlyIPAddress
)