GridFSBucket.OpenDownloadStreamAsync Method (BsonValue, GridFSDownloadOptions, CancellationToken) (original) (raw)
GridFSBucketOpenDownloadStreamAsync Method (BsonValue, GridFSDownloadOptions, CancellationToken)
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 OpenDownloadStreamAsync( BsonValue id, GridFSDownloadOptions options = null, CancellationToken cancellationToken = null )
Public Function OpenDownloadStreamAsync ( id As BsonValue, Optional options As GridFSDownloadOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing ) As Task(Of GridFSDownloadStream)
member OpenDownloadStreamAsync : id : BsonValue * ?options : GridFSDownloadOptions * ?cancellationToken : CancellationToken (* Defaults: let _options = defaultArg options null let _cancellationToken = defaultArg cancellationToken null *) -> Task
Parameters
id
Type: MongoDB.BsonBsonValue
The file id.
options (Optional)
Type: MongoDB.Driver.GridFSGridFSDownloadOptions
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type: TaskGridFSDownloadStream
A Task whose result is a Stream.
See Also