GridFSBucket.DownloadAsBytesAsync Method (BsonValue, GridFSDownloadOptions, CancellationToken) (original) (raw)
GridFSBucketDownloadAsBytesAsync Method (BsonValue, GridFSDownloadOptions, CancellationToken)
Downloads a file stored in GridFS and returns it as a byte array.
Namespace: MongoDB.Driver.GridFS
Assembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public Task<byte[]> DownloadAsBytesAsync( BsonValue id, GridFSDownloadOptions options = null, CancellationToken cancellationToken = null )
Public Function DownloadAsBytesAsync ( id As BsonValue, Optional options As GridFSDownloadOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing ) As Task(Of Byte())
member DownloadAsBytesAsync : id : BsonValue * ?options : GridFSDownloadOptions * ?cancellationToken : CancellationToken (* Defaults: let _options = defaultArg options null let _cancellationToken = defaultArg cancellationToken null *) -> Task<byte[]>
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: TaskByte
A Task whose result is a byte array containing the contents of the file stored in GridFS.
See Also