BrotliStream.BeginWrite(Byte[], Int32, Int32, AsyncCallback, Object) Method

Definition

Begins an asynchronous write operation. (Consider using the WriteAsync(Byte[], Int32, Int32) method instead.)

public:
 override IAsyncResult ^ BeginWrite(cli::array <System::Byte> ^ buffer, int offset, int count, AsyncCallback ^ asyncCallback, System::Object ^ asyncState);
public override IAsyncResult BeginWrite (byte[] buffer, int offset, int count, AsyncCallback? asyncCallback, object? asyncState);
public override IAsyncResult BeginWrite (byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState);
override this.BeginWrite : byte[] * int * int * AsyncCallback * obj -> IAsyncResult
Public Overrides Function BeginWrite (buffer As Byte(), offset As Integer, count As Integer, asyncCallback As AsyncCallback, asyncState As Object) As IAsyncResult

Parameters

buffer
Byte[]

The buffer from which data will be written.

offset
Int32

The byte offset in buffer at which to begin writing data from the stream.

count
Int32

The maximum number of bytes to write.

asyncCallback
AsyncCallback

An optional asynchronous callback, to be called when the write operation is complete.

asyncState
Object

A user-provided object that distinguishes this particular asynchronous write request from other requests.

Returns

An object that represents the asynchronous write operation, which could still be pending.

Exceptions

The method tried to write asynchronously past the end of the stream, or a disk error occurred.

One or more of the arguments is invalid.

Methods were called after the stream was closed.

The current BrotliStream implementation does not support the write operation.

The write operation cannot be performed because the stream is closed.

Applies to