GridFSBucketRenameAsync Method (BsonValue, String, CancellationToken) |
Renames 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 RenameAsync(
BsonValue id,
string newFilename,
CancellationToken cancellationToken = null
)
Public Function RenameAsync (
id As BsonValue,
newFilename As String,
Optional cancellationToken As CancellationToken = Nothing
) As Task
member RenameAsync :
id : BsonValue *
newFilename : string *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task
Parameters
- id
- Type: MongoDB.BsonBsonValue
The file id. - newFilename
- Type: SystemString
The new filename. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskA Task.
See Also