|  | Filtered | 
 Syntax
Syntaxpublic void Write( byte[] buffer, int offset, int count, CancellationToken cancellationToken )
 Exceptions
Exceptions| Exception | Condition | 
|---|---|
| ArgumentNullException | buffer is . | 
| ArgumentOutOfRangeException | offset is less than zero or greater than the length of buffer. -or- The buffer is not large enough to contain count bytes starting at the specified offset. | 
| ObjectDisposedException | The stream has been disposed. | 
| NotSupportedException | The stream does not support writing. | 
| OperationCanceledException | The operation was canceled via the cancellation token. | 
| IOException | An I/O error occurred. | 
 Remarks
Remarks See Also
See Also