Asynchronous writes arent supported, a NotSupportedException is always thrown
public override IAsyncResult BeginWrite(
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 write.
- offset
- The offset to begin writing at.
- count
- The number of bytes to write.
- callback
- The AsyncCallback to use.
- state
- The state object.
Return Value
Returns an IAsyncResult.
Exceptions
Exception Type | Condition |
---|---|
NotSupportedException | Any access |
See Also
DeflaterOutputStream Class | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace