MultiBufferMemoryStream.BeginWrite Method

Definition

Begins an asynchronous write operation.

public override IAsyncResult BeginWrite (byte[] buffer, int offset, int count, AsyncCallback callback, object state);
override this.BeginWrite : byte[] * int * int * AsyncCallback * obj -> IAsyncResult
Public Overrides Function BeginWrite (buffer As Byte(), offset As Integer, count As Integer, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

buffer
Byte[]

The buffer to write data from.

offset
Int32

The zero-based byte offset in buffer at which to begin copying bytes to the current stream.

count
Int32

The number of bytes to write.

callback
AsyncCallback

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

state
Object

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

Returns

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

Applies to