Asynchronous reads are not supported a NotSupportedException is always thrown
public override IAsyncResult BeginRead(
byte[] buffer,
int offset,
int count,
AsyncCallback callback,
object state
);
byte[] buffer,
int offset,
int count,
AsyncCallback callback,
object state
);
Parameters
- buffer
- The buffer to read into.
- offset
- The offset to start storing data at.
- count
- The number of bytes to read
- callback
- The async callback to use.
- state
- The state to use.
Return Value
Returns an IAsyncResult
Exceptions
Exception Type | Condition |
---|---|
NotSupportedException | Any access |
See Also
DeflaterOutputStream Class | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace