GridFSBucketTFileIdDownloadToStreamByName 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.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic void DownloadToStreamByName(
	string filename,
	Stream destination,
	GridFSDownloadByNameOptions options = null,
	CancellationToken cancellationToken = default
)
Public 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 new CancellationToken()
*)
-> unit 
override DownloadToStreamByName : 
        filename : string * 
        destination : Stream * 
        ?options : GridFSDownloadByNameOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> 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. 
Implements
IGridFSBucketTFileIdDownloadToStreamByName(String, Stream, GridFSDownloadByNameOptions, CancellationToken)
See Also