47 references to Address
SMSvcHost (3)
System\ServiceModel\Activation\TransportListener.cs (3)
44
if (endPoint.
Address
.Equals(IPAddress.Broadcast))
222
address = (socket.LocalEndPoint as IPEndPoint).
Address
;
360
return iPEndPoint.
Address
.ToString() + ":" + iPEndPoint.Port;
System (23)
net\System\Net\_AutoWebProxyScriptHelper.cs (1)
617
byte[] IPv4AddressBytes = IPv4EndPoint.
Address
.GetAddressBytes();
net\System\Net\_FtpControlStream.cs (6)
125
if (!connection.ServerAddress.Equals(((IPEndPoint)connection.m_DataSocket.RemoteEndPoint).
Address
))
703
IPEndPoint localEndPoint = new IPEndPoint(((IPEndPoint)Socket.LocalEndPoint).
Address
, 0);
740
if (!ServerAddress.Equals(((IPEndPoint)m_DataSocket.RemoteEndPoint).
Address
))
1097
IPEndPoint epListener = new IPEndPoint(((IPEndPoint)Socket.LocalEndPoint).
Address
, 0);
1129
return FormatAddress(localEP.
Address
, localEP.Port);
1131
return FormatAddressV6(localEP.
Address
, localEP.Port);
net\System\Net\DNS.cs (2)
1157
addresses.Add( ((IPEndPoint)IPEndPoint.Any.Create(sockaddr)).
Address
);
1160
addresses.Add( ((IPEndPoint)IPEndPoint.IPv6Any.Create(sockaddr)).
Address
);
net\System\Net\HttpListenerRequest.cs (2)
463
return LocalEndPoint.
Address
.Equals(RemoteEndPoint.
Address
);
net\System\Net\IPEndPoint.cs (2)
130
return new SocketAddress(
Address
, Port);
167
return new IPEndPoint(
Address
.Snapshot(), Port);
net\System\Net\ServicePoint.cs (2)
1288
IPEndPoint clonedRemoteIPEndPoint = new IPEndPoint(remoteIPEndPoint.
Address
, remoteIPEndPoint.Port);
1413
if ( remoteIPEndPoint.
Address
.AddressFamily==AddressFamily.InterNetwork ) {
net\System\Net\Sockets\Socket.cs (5)
883
ipSnapshot.
Address
.ToString(),
941
if (!OSSupportsIPv4 && ipEndPoint != null && ipEndPoint.
Address
.IsIPv4MappedToIPv6)
5886
return new IPEndPoint(input.
Address
.MapToIPv6(), input.Port);
5929
ipSnapshot.
Address
.ToString(),
6450
IPAddress boundAddress = (ipEndPoint != null ? ipEndPoint.
Address
: null);
net\System\Net\Sockets\UDPClient.cs (3)
476
CheckForBroadcast(endPoint.
Address
);
529
CheckForBroadcast(endPoint.
Address
);
634
CheckForBroadcast(endPoint.
Address
);
System.Net (5)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (2)
379
sin.sin6_scope_id = (uint)endPoint.
Address
.ScopeId;
380
CollaborationHelperFunctions.ByteArrayToSin6Addr(endPoint.
Address
.GetAddressBytes(), ref sin);
net\PeerToPeer\SystemNetHelpers.cs (3)
34
long scope = ipEndPoint.
Address
.ScopeId;
40
byte[] addressBytes = ipEndPoint.
Address
.GetAddressBytes();
50
byte[] addressBytes = ipEndPoint.
Address
.GetAddressBytes();
System.Runtime.Remoting (4)
channels\core\socketmanager.cs (2)
105
IPAddress remoteAddr = ((IPEndPoint)NetSocket.RemoteEndPoint).
Address
;
114
IPAddress remoteAddr = ((IPEndPoint)NetSocket.RemoteEndPoint).
Address
;
channels\http\httpstreams.cs (1)
646
headers[CommonTransportKeys.IPAddress] = ((IPEndPoint)NetSocket.RemoteEndPoint).
Address
;
channels\tcp\tcpstreams.cs (1)
321
headers.IPAddress = ((IPEndPoint)NetSocket.RemoteEndPoint).
Address
;
System.ServiceModel (8)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
30
this.ipAddress = ((IPEndPoint)this.listenSocket.LocalEndPoint).
Address
;
System\ServiceModel\Channels\PnrpPeerResolver.cs (4)
381
Array.ForEach(input.Addresses, delegate(IPEndPoint obj) { addresses.Add(obj.
Address
); });
1260
sa.sin_addr = endpoint.
Address
.GetAddressBytes();
1270
sa.sin6_addr = endpoint.
Address
.GetAddressBytes();
1271
sa.sin6_scope_id = (uint)endpoint.
Address
.ScopeId;
System\ServiceModel\Channels\RemoteEndpointMessageProperty.cs (1)
96
this.address = remoteEndPoint.
Address
.ToString();
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
1056
this.ipAddress = ((IPEndPoint)socket.LocalEndPoint).
Address
;
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
1276
return iPEndPoint.
Address
.ToString() + ":" + iPEndPoint.Port;
System.ServiceModel.Channels (4)
System\ServiceModel\Channels\ServerUdpOutputChannel.cs (1)
147
UdpSocket socket = this.GetSendSocket(remoteEndPoint.
Address
, destination, out exceptionToBeThrown);
System\ServiceModel\Channels\UdpOutputChannel.cs (2)
224
bool sendingMulticast = UdpUtility.IsMulticastAddress(remoteEndPoint.
Address
);
895
this.IsMulticast = UdpUtility.IsMulticastAddress(this.remoteEndpoint.
Address
);
System\ServiceModel\Channels\UdpUtility.cs (1)
566
new RemoteEndpointMessageProperty(remoteEndPoint.
Address
.ToString(), remoteEndPoint.Port));