|
| TcpClient () |
|
| TcpClient (AddressFamily family) |
|
| TcpClient (IPEndPoint localEP) |
|
| TcpClient (string hostname, int port) |
|
void | Connect (string hostname, int port) |
|
void | Connect (IPAddress address, int port) |
|
void | Connect (IPEndPoint remoteEP) |
|
void | Connect (IPAddress[] ipAddresses, int port) |
|
Task | ConnectAsync (IPAddress address, int port) |
|
Task | ConnectAsync (string host, int port) |
|
Task | ConnectAsync (IPAddress[] addresses, int port) |
|
Task | ConnectAsync (IPEndPoint remoteEP) |
|
ValueTask | ConnectAsync (IPAddress address, int port, CancellationToken cancellationToken) |
|
ValueTask | ConnectAsync (string host, int port, CancellationToken cancellationToken) |
|
ValueTask | ConnectAsync (IPAddress[] addresses, int port, CancellationToken cancellationToken) |
|
ValueTask | ConnectAsync (IPEndPoint remoteEP, CancellationToken cancellationToken) |
|
IAsyncResult | BeginConnect (IPAddress address, int port, AsyncCallback? requestCallback, object? state) |
|
IAsyncResult | BeginConnect (string host, int port, AsyncCallback? requestCallback, object? state) |
|
IAsyncResult | BeginConnect (IPAddress[] addresses, int port, AsyncCallback? requestCallback, object? state) |
|
void | EndConnect (IAsyncResult asyncResult) |
|
NetworkStream | GetStream () |
|
void | Close () |
|
void | Dispose () |
|
Definition at line 8 of file TcpClient.cs.