Click or drag to resize

IGridFSBucketUploadFromBytes Method (String, Byte, GridFSUploadOptions, CancellationToken)

Uploads a file (or a new revision of a file) to GridFS.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
ObjectId UploadFromBytes(
	string filename,
	byte[] source,
	GridFSUploadOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

filename
Type: SystemString
The filename.
source
Type: SystemByte
The source.
options (Optional)
Type: MongoDB.Driver.GridFSGridFSUploadOptions
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: ObjectId
The id of the new file.
See Also