2 instantiations of TcpClient
System (2)
net\System\Net\Sockets\TCPListener.cs (2)
259TcpClient returnValue = new TcpClient(acceptedSocket); 332return new TcpClient(socket);
11 references to TcpClient
System (11)
net\System\Net\Sockets\TCPClient.cs (6)
15/// <para>The <see cref='System.Net.Sockets.TcpClient'/> class provide TCP services at a higher level 16/// of abstraction than the <see cref='System.Net.Sockets.Socket'/> class. <see cref='System.Net.Sockets.TcpClient'/> 33/// Initializes a new instance of the <see cref='System.Net.Sockets.TcpClient'/> 58/// Initializes a new instance of the <see cref='System.Net.Sockets.TcpClient'/> class. 68/// Initializes a new instance of the <see cref='System.Net.Sockets.TcpClient'/> class. 92/// <para>Initializes a new instance of the <see cref='System.Net.Sockets.TcpClient'/> class and connects to the
net\System\Net\Sockets\TCPListener.cs (5)
253public TcpClient AcceptTcpClient() { 259TcpClient returnValue = new TcpClient(acceptedSocket); 313public TcpClient EndAcceptTcpClient(IAsyncResult asyncResult){ 343public Task<TcpClient> AcceptTcpClientAsync() 345return Task<TcpClient>.Factory.FromAsync(BeginAcceptTcpClient, EndAcceptTcpClient, null);