Click or drag to resize

DelegatingStreamBeginWrite Method

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public override IAsyncResult BeginWrite(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)

Parameters

buffer
Type: SystemByte
The buffer to write data from.
offset
Type: SystemInt32
The byte offset in buffer from which to begin writing.
count
Type: SystemInt32
The maximum number of bytes to write.
callback
Type: SystemAsyncCallback
An optional asynchronous callback, to be called when the write is complete.
state
Type: SystemObject
A user-provided object that distinguishes this particular asynchronous write request from other requests.

Return Value

Type: IAsyncResult
An IAsyncResult that represents the asynchronous write, which could still be pending.
Exceptions
ExceptionCondition
IOExceptionAttempted an asynchronous write past the end of the stream, or a disk error occurs.
ArgumentExceptionOne or more of the arguments is invalid.
ObjectDisposedExceptionMethods were called after the stream was closed.
NotSupportedExceptionThe current Stream implementation does not support the write operation.
See Also