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