Appccelerate.IO.Streams.StreamDecoratorStream.BeginWrite C# (CSharp) Method

BeginWrite() public method

Begins an asynchronous write operation.
The current Stream implementation does not support the write /// operation. Attempted an asynchronous write past the end of the stream, /// or a disk error occurs. One or more of the arguments is invalid. Methods were called after the stream was closed.
public BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte The buffer to write data from.
offset int The byte offset in buffer from which to begin writing.
count int The maximum 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.
return IAsyncResult
        public override IAsyncResult BeginWrite(
            byte[] buffer,
            int offset,
            int count,
            AsyncCallback callback,
            object state)
        {
            this.AssertStreamNotNull();
            return this.decoratedStream.BeginWrite(buffer, offset, count, callback, state);
        }