Click or drag to resize
GridFSBucket.DownloadAsBytes Method (ObjectId, GridFSDownloadOptions, CancellationToken)
Downloads a file stored in GridFS and returns it as a byte array.

Namespace: MongoDB.Driver.GridFS
Assembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.2.0
Syntax
public byte[] DownloadAsBytes(
	ObjectId id,
	GridFSDownloadOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

id
Type: MongoDB.Bson.ObjectId
The file id.
options (Optional)
Type: MongoDB.Driver.GridFS.GridFSDownloadOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type:Byte[]
The contents of the file stored in GridFS.

Implements

IGridFSBucket.DownloadAsBytes(ObjectId, GridFSDownloadOptions, CancellationToken)
See Also