BeginConnect()

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

ParameterTypeDescription
hostStringA remote host name.
portint32_tA port of the remote host.
requestCallbackAsyncCallbackA callback that will be called when the operation completes.
stateSystem::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

ParameterTypeDescription
addressSystem::SharedPtr<IPAddress>The IP address of a remote host.
portint32_tA port of the remote host.
requestCallbackAsyncCallbackA callback that will be called when the operation completes.
stateSystem::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

ParameterTypeDescription
addressesSystem::ArrayPtr<System::SharedPtr<IPAddress>>The IP addresses of a remote host.
portint32_tA port of the remote host.
requestCallbackAsyncCallbackA callback that will be called when the operation completes.
stateSystem::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