GridFSBucket(TFileId).DownloadToStreamByName Method (original) (raw)

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.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed

Syntax

public void DownloadToStreamByName( string filename, Stream destination, GridFSDownloadByNameOptions options = null, CancellationToken cancellationToken = null )

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 null ) -> unit override 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.

Implements

IGridFSBucketTFileIdDownloadToStreamByName(String, Stream, GridFSDownloadByNameOptions, CancellationToken)

See Also

Reference