System::Net::Security::SslStream::BeginWrite 方法

SslStream::BeginWrite method

发起异步写入操作。

System::SharedPtr<IAsyncResult> System::Net::Security::SslStream::BeginWrite(System::ArrayPtr<uint8_t> buffer, int32_t offset, int32_t count, AsyncCallback asyncCallback, System::SharedPtr<Object> asyncState) override
参数类型描述
bufferSystem::ArrayPtr<uint8_t>用于写入数据的字节数组。
offsetint32_t指定数组中的字节偏移量。
countint32_t要写入的字节数。
asyncCallbackAsyncCallback操作完成时调用的回调函数。
asyncStateSystem::SharedPtr<Object>用户提供的数据,用于唯一标识每个异步写入操作。

ReturnValue

一个 IAsyncResult 对象,表示已启动的异步写入操作。

另见