Click or drag to resize

GridFSBucket<TFileId>.OpenUploadStreamAsync Method

Opens a Stream that can be used by the application to write data to a GridFS file.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public Task<GridFSUploadStream<TFileId>> OpenUploadStreamAsync(
	TFileId id,
	string filename,
	GridFSUploadOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

id
Type: TFileId
The file id.
filename
Type: System.String
The filename.
options (Optional)
Type: MongoDB.Driver.GridFS.GridFSUploadOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<GridFSUploadStream<TFileId>>
A Task whose result is a Stream.

Implements

IGridFSBucket<TFileId>.OpenUploadStreamAsync(TFileId, String, GridFSUploadOptions, CancellationToken)
See Also