System::Net::Security::SslStream::BeginRead メソッド

SslStream::BeginRead method

非同期読み取り操作を開始します。

System::SharedPtr<IAsyncResult> System::Net::Security::SslStream::BeginRead(System::ArrayPtr<uint8_t> buffer, int32_t offset, int32_t count, AsyncCallback asyncCallback, System::SharedPtr<Object> asyncState) override
パラメーター説明
バッファSystem::ArrayPtr<uint8_t>データを読み取るバイト配列。
offsetint32_t指定された配列内のバイト単位のオフセットです。
countint32_t読み取るバイト数です。
asyncCallbackAsyncCallback操作が完了したときに呼び出されるコールバックです。
asyncStateSystem::SharedPtr<Object>各非同期読み取り操作を一意に識別するためにユーザーが提供するデータです。

ReturnValue

開始された非同期読み取り操作を表す IAsyncResult オブジェクトです。

参照