BeginConnect()
Contents
[
Hide
]TcpClient::BeginConnect(String, int32_t, AsyncCallback, System::SharedPtr<Object>) method
Initiates an asynchronous connect operation.
System::SharedPtr<IAsyncResult> System::Net::Sockets::TcpClient::BeginConnect(String host, int32_t port, AsyncCallback requestCallback, System::SharedPtr<Object> state)
Arguments
Parameter | Type | Description |
---|---|---|
host | String | A remote host name. |
port | int32_t | A port of the remote host. |
requestCallback | AsyncCallback | A callback that will be called when the operation completes. |
state | System::SharedPtr<Object> | User-provided data used to uniquely identify each asynchronous connect operation. |
Return Value
An IAsyncResult object representing the initiated asynchronous connect operation.
TcpClient::BeginConnect(System::SharedPtr<IPAddress>, int32_t, AsyncCallback, System::SharedPtr<Object>) method
Initiates an asynchronous connect operation.
System::SharedPtr<IAsyncResult> System::Net::Sockets::TcpClient::BeginConnect(System::SharedPtr<IPAddress> address, int32_t port, AsyncCallback requestCallback, System::SharedPtr<Object> state)
Arguments
Parameter | Type | Description |
---|---|---|
address | System::SharedPtr<IPAddress> | The IP address of a remote host. |
port | int32_t | A port of the remote host. |
requestCallback | AsyncCallback | A callback that will be called when the operation completes. |
state | System::SharedPtr<Object> | User-provided data used to uniquely identify each asynchronous connect operation. |
Return Value
An IAsyncResult object representing the initiated asynchronous connect operation.
TcpClient::BeginConnect(System::ArrayPtr<System::SharedPtr<IPAddress>>, int32_t, AsyncCallback, System::SharedPtr<Object>) method
Initiates an asynchronous connect operation.
System::SharedPtr<IAsyncResult> System::Net::Sockets::TcpClient::BeginConnect(System::ArrayPtr<System::SharedPtr<IPAddress>> addresses, int32_t port, AsyncCallback requestCallback, System::SharedPtr<Object> state)
Arguments
Parameter | Type | Description |
---|---|---|
addresses | System::ArrayPtr<System::SharedPtr<IPAddress>> | The IP addresses of a remote host. |
port | int32_t | A port of the remote host. |
requestCallback | AsyncCallback | A callback that will be called when the operation completes. |
state | System::SharedPtr<Object> | User-provided data used to uniquely identify each asynchronous connect operation. |
Return Value
An IAsyncResult object representing the initiated asynchronous connect operation.
See Also
- Typedef SharedPtr
- Typedef AsyncCallback
- Typedef ArrayPtr
- Class IAsyncResult
- Class String
- Class Object
- Class TcpClient
- Class IPAddress
- Namespace System::Net::Sockets
- Library Aspose.Slides