Click or drag to resize

IGridFSBucket<TFileId>.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.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
Task DownloadToStreamByNameAsync(
	string filename,
	Stream destination,
	GridFSDownloadByNameOptions options = null,
	CancellationToken cancellationToken = default
)

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.
See Also