BeginSend()

Socket::BeginSend(System::ArrayPtr<uint8_t>, int32_t, int32_t, SocketFlags, AsyncCallback, System::SharedPtr<Object>) method

Initiates an asynchronous send operation.

System::SharedPtr<IAsyncResult> System::Net::Sockets::Socket::BeginSend(System::ArrayPtr<uint8_t> buffer, int32_t offset, int32_t size, SocketFlags socketFlags, AsyncCallback callback, System::SharedPtr<Object> state)

Arguments

ParameterTypeDescription
bufferSystem::ArrayPtr<uint8_t>A buffer to read data from.
offsetint32_tThe offset in bytes in the specified array.
sizeint32_tThe number of bytes in the specified array starting from the ‘offset’ parameter.
socketFlagsSocketFlagsThe send behaviour.
callbackAsyncCallbackA callback that will be called when the operation completes.
stateSystem::SharedPtr<Object>User-provided data used to uniquely identify each asynchronous send operation.

Return Value

An IAsyncResult object representing the initiated asynchronous send operation.

See Also