IGridFSBucketTFileIdDownloadToStreamByName 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax void DownloadToStreamByName(
string filename,
Stream destination,
GridFSDownloadByNameOptions options = null,
CancellationToken cancellationToken = null
)
Sub DownloadToStreamByName (
filename As String,
destination As Stream,
Optional options As GridFSDownloadByNameOptions = Nothing,
Optional cancellationToken As CancellationToken = Nothing
)
abstract DownloadToStreamByName :
filename : string *
destination : Stream *
?options : GridFSDownloadByNameOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
Parameters
- filename
- Type: SystemString
The filename. - destination
- Type: System.IOStream
The destination. - options (Optional)
- Type: MongoDB.Driver.GridFSGridFSDownloadByNameOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
See Also