Click or drag to resize
GridFSBucket.DownloadToStreamByNameAsync Method
Downloads a file stored in GridFS and writes the contents to a stream.

Namespace: MongoDB.Driver.GridFS
Assembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.2.0
Syntax
public Task DownloadToStreamByNameAsync(
	string filename,
	Stream destination,
	GridFSDownloadByNameOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: Task
A Task.

Implements

IGridFSBucket.DownloadToStreamByNameAsync(String, Stream, GridFSDownloadByNameOptions, CancellationToken)
See Also