Click or drag to resize

GridFSBucket<TFileId>.DownloadAsBytesByName Method

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.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax
public byte[] DownloadAsBytesByName(
	string filename,
	GridFSDownloadByNameOptions options = null,
	CancellationToken cancellationToken = default
)

Parameters

filename
Type: System.String
The filename.
options (Optional)
Type: MongoDB.Driver.GridFS.GridFSDownloadByNameOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type:Byte[]
A byte array containing the contents of the file stored in GridFS.

Implements

IGridFSBucket<TFileId>.DownloadAsBytesByName(String, GridFSDownloadByNameOptions, CancellationToken)
See Also