Click or drag to resize

GridFSBucket.UploadFromBytes Method (String,Byte[], GridFSUploadOptions, CancellationToken)

Uploads a file (or a new revision of a file) to GridFS.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public ObjectId UploadFromBytes(
	string filename,
	byte[] source,
	GridFSUploadOptions options = null,
	CancellationToken cancellationToken = default
)

Parameters

filename
Type: System.String
The filename.
source
Type:System.Byte[]
The source.
options (Optional)
Type: MongoDB.Driver.GridFS.GridFSUploadOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: ObjectId
The id of the new file.

Implements

IGridFSBucket.UploadFromBytes(String,Byte[], GridFSUploadOptions, CancellationToken)
See Also