Click or drag to resize

IGridFSBucket<TFileId>.DownloadToStreamByName 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.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
Syntax
void DownloadToStreamByName(
	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.
See Also