InflaterInputStream.BeginWrite Method

IC Sharp Sharp Zip Lib

ICSharpCode SharpZipLib Class Library

InflaterInputStream.BeginWrite Method 

Entry point to begin an asynchronous write. Always throws a NotSupportedException.

public override IAsyncResult BeginWrite(
   byte[] buffer,
   int offset,
   int count,
   AsyncCallback callback,
   object state
);

Parameters

buffer
The buffer to write data from
offset
Offset of first byte to write
count
The maximum number of bytes to write
callback
The method to be called when the asynchronous write operation is completed
state
A user-provided object that distinguishes this particular asynchronous write request from other requests

Return Value

An IAsyncResult that references the asynchronous write

Exceptions

Exception Type Condition
NotSupportedException Any access

See Also

InflaterInputStream Class | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace