64 references to IPEndPoint
SMSvcHost (3)
System\ServiceModel\Activation\RoutingTable.cs (1)
203return new IPEndPoint(address, path.Port);
System\ServiceModel\Activation\TransportListener.cs (2)
48connectionListener = new SocketConnectionListener(new IPEndPoint(IPAddress.Any, endPoint.Port), socketSettings, true); 54connectionListener = new SocketConnectionListener(new IPEndPoint(IPAddress.IPv6Any, endPoint.Port), socketSettings, true);
System (37)
net\System\Net\_AutoWebProxyScriptHelper.cs (2)
615 IPEndPoint dummy = new IPEndPoint(IPAddress.Any, 0); 627 IPEndPoint IPv6EndPoint = new IPEndPoint(v6Address, IPv4EndPoint.Port);
net\System\Net\_FtpControlStream.cs (3)
703IPEndPoint localEndPoint = new IPEndPoint(((IPEndPoint)Socket.LocalEndPoint).Address, 0); 706m_PassiveEndPoint = new IPEndPoint(ServerAddress, port); 1097IPEndPoint epListener = new IPEndPoint(((IPEndPoint)Socket.LocalEndPoint).Address, 0);
net\System\Net\DNS.cs (1)
1198SocketAddress address = (new IPEndPoint(addr,0)).Serialize();
net\System\Net\IPEndPoint.cs (3)
38internal static IPEndPoint Any = new IPEndPoint(IPAddress.Any, AnyPort); 39internal static IPEndPoint IPv6Any = new IPEndPoint(IPAddress.IPv6Any,AnyPort); 167return new IPEndPoint(Address.Snapshot(), Port);
net\System\Net\NetworkInformation\ping.cs (1)
682IPEndPoint ep = new IPEndPoint (address, 0);
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (1)
335udpListeners.Add(new IPEndPoint(new IPAddress(udp6RowOwnerPid.localAddr,
net\System\Net\NetworkInformation\SystemTcpConnection.cs (2)
47localEndPoint = new IPEndPoint(new IPAddress(row.localAddr, row.localScopeId), (int)localPort); 48remoteEndPoint = new IPEndPoint(new IPAddress(row.remoteAddr, row.remoteScopeId), (int)remotePort);
net\System\Net\ServicePoint.cs (2)
1288IPEndPoint clonedRemoteIPEndPoint = new IPEndPoint(remoteIPEndPoint.Address, remoteIPEndPoint.Port); 1411remoteIPEndPoint = new IPEndPoint(ipAddressInfo, m_Port);
net\System\Net\SocketAddress.cs (1)
212return new IPEndPoint(address, port);
net\System\Net\Sockets\_MultipleConnectAsync.cs (1)
232internalArgs.RemoteEndPoint = new IPEndPoint(attemptAddress, endPoint.Port);
net\System\Net\Sockets\Socket.cs (10)
1058IPEndPoint remoteEP = new IPEndPoint(address, port); 1109Connect(new IPEndPoint(address,port) ); 3138IAsyncResult result = BeginConnect(new IPEndPoint(address,port),requestCallback,state); 5886return new IPEndPoint(input.Address.MapToIPv6(), input.Port); 6890InternalBind(new IPEndPoint(IPAddress.Any, 0)); 6892InternalBind(new IPEndPoint(IPAddress.IPv6Any, 0)); 7084return new IPEndPoint(addresses[index], port); 7103EndPoint endPoint = new IPEndPoint(currentAddressSnapshot, context.port); 7815InternalBind(new IPEndPoint(IPAddress.Any, 0)); 7817InternalBind(new IPEndPoint(IPAddress.IPv6Any, 0));
net\System\Net\Sockets\TCPClient.cs (2)
260Connect( new IPEndPoint(address,port) ); 328IPEndPoint remoteEP = new IPEndPoint(address, port);
net\System\Net\Sockets\TCPListener.cs (2)
57m_ServerSocketEP = new IPEndPoint(localaddr, port); 78m_ServerSocketEP = new IPEndPoint(IPAddress.Any, port);
net\System\Net\Sockets\UDPClient.cs (6)
100localEP = new IPEndPoint(IPAddress.Any, port); 103localEP = new IPEndPoint(IPAddress.IPv6Any, port); 379Connect(new IPEndPoint(address, port)); 451IPEndPoint endPoint = new IPEndPoint(addr, port); 571IPEndPoint ipEndPoint = new IPEndPoint(addresses[i], port); 663ipEndPoint = new IPEndPoint(addresses[i], port);
System.Net (2)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (1)
362IPEndPoint IPEndPt = new IPEndPoint(IPAddr, port);
net\PeerToPeer\SystemNetHelpers.cs (1)
85return new IPEndPoint(ip, port);
System.Runtime.Remoting (1)
channels\core\socketcache.cs (1)
114return CreateNewSocket(new IPEndPoint(_addressList[0], _port));
System.ServiceModel (12)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
91socketListener = new SocketConnectionListener(new IPEndPoint(ipAddress, port), this, false);
System\ServiceModel\Channels\PnrpPeerResolver.cs (5)
107return new IPEndPoint(new IPAddress(bytes), 0); 480entry.addressList.Add(new IPEndPoint(address, port)); 488global.addressList.Add(new IPEndPoint(address, port)); 2233endPoint = new IPEndPoint(new IPAddress(sa.sin_addr), sa.sin_port); 2246endPoint = new IPEndPoint(new IPAddress(sa.sin6_addr, scopeId), sa.sin6_port);
System\ServiceModel\Channels\SocketConnection.cs (2)
1722socket.Connect(new IPEndPoint(addresses[i], port)); 1876IPEndPoint ipEndPoint = new IPEndPoint(addresses[currentIndex], port);
System\ServiceModel\Channels\TcpChannelListener.cs (4)
366this.ipv4ListenSocket = ListenAndBind(new IPEndPoint(ipv4Address, 0)); 371this.ipv6ListenSocket = ListenAndBind(new IPEndPoint(ipv6Address, 0)); 403this.ipv4ListenSocket = ListenAndBind(new IPEndPoint(ipv4Address, port)); 404this.ipv6ListenSocket = ListenAndBind(new IPEndPoint(ipv6Address, port));
System.ServiceModel.Channels (9)
System\ServiceModel\Channels\ServerUdpOutputChannel.cs (4)
127remoteEndPoint = new IPEndPoint(IPAddress.Parse(destination.DnsSafeHost), destination.Port); 170remoteEndPoint = new IPEndPoint(remoteAddresses[i], destination.Port); 212remoteEndPoint = new IPEndPoint(address, destination.Port); 236remoteEndPoint = new IPEndPoint(address, destination.Port);
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
183remoteEndPoint = new IPEndPoint(remoteAddressList[0], via.Port);
System\ServiceModel\Channels\UdpSocket.cs (2)
160return new IPEndPoint(IPAddress.Any, 0); 164return new IPEndPoint(IPAddress.IPv6Any, 0);
System\ServiceModel\Channels\UdpUtility.cs (2)
120localEndpoint = new IPEndPoint(bindAddress, port); 124localEndpoint = new IPEndPoint(ipAddress, port);