16 references to IPAddress
System (11)
net\System\Net\IPAddress.cs (4)
34
public static readonly IPAddress IPv6Any = new
IPAddress
(new byte[]{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },0);
35
public static readonly IPAddress IPv6Loopback = new
IPAddress
(new byte[]{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 },0);
36
public static readonly IPAddress IPv6None = new
IPAddress
(new byte[]{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },0);
214
return new
IPAddress
(bytes,scope);
net\System\Net\NetworkInformation\ping.cs (2)
342
addressSnapshot = new
IPAddress
(address.GetAddressBytes(), address.ScopeId);
475
addressSnapshot = new
IPAddress
(address.GetAddressBytes(), address.ScopeId);
net\System\Net\NetworkInformation\PingReply.cs (1)
61
address = new
IPAddress
(reply.Address.Address,reply.Address.ScopeID);
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (1)
335
udpListeners.Add(new IPEndPoint(new
IPAddress
(udp6RowOwnerPid.localAddr,
net\System\Net\NetworkInformation\SystemTcpConnection.cs (2)
47
localEndPoint = new IPEndPoint(new
IPAddress
(row.localAddr, row.localScopeId), (int)localPort);
48
remoteEndPoint = new IPEndPoint(new
IPAddress
(row.remoteAddr, row.remoteScopeId), (int)remotePort);
net\System\Net\SocketAddress.cs (1)
190
return new
IPAddress
(address, scope);
System.Net (1)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (1)
357
IPAddress IPAddr = new
IPAddress
(addrBytes, (long)pe.peerAddress.sin6.sin6_scope_id);
System.ServiceModel (4)
System\ServiceModel\Channels\PeerIPHelper.cs (2)
106
clone = new
IPAddress
(source.GetAddressBytes(), source.ScopeId);
340
uriBuilder.Host = new
IPAddress
(ipAddress.GetAddressBytes(), ipAddress.ScopeId).ToString();
System\ServiceModel\Channels\PeerUnsafeNativeMethods.cs (1)
207
return new
IPAddress
(this.sin6_addr, this.sin6_scope_id);
System\ServiceModel\Channels\PnrpPeerResolver.cs (1)
2246
endPoint = new IPEndPoint(new
IPAddress
(sa.sin6_addr, scopeId), sa.sin6_port);