Click or drag to resize

GridFSBucket<TFileId>.OpenDownloadStreamAsync Method

Opens a Stream that can be used by the application to read data from a GridFS file.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public Task<GridFSDownloadStream<TFileId>> OpenDownloadStreamAsync(
	TFileId id,
	GridFSDownloadOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: Task<GridFSDownloadStream<TFileId>>
A Task whose result is a Stream.

Implements

IGridFSBucket<TFileId>.OpenDownloadStreamAsync(TFileId, GridFSDownloadOptions, CancellationToken)
See Also