GridFSBucketRename Method (ObjectId, String, CancellationToken) |
Renames a GridFS file.
Namespace: MongoDB.Driver.GridFSAssembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.2.0
Syntax public void Rename(
ObjectId id,
string newFilename,
CancellationToken cancellationToken = null
)
Public Sub Rename (
id As ObjectId,
newFilename As String,
Optional cancellationToken As CancellationToken = Nothing
)
abstract Rename :
id : ObjectId *
newFilename : string *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
override Rename :
id : ObjectId *
newFilename : string *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
Parameters
- id
- Type: MongoDB.BsonObjectId
The file id. - newFilename
- Type: SystemString
The new filename. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Implements
IGridFSBucketRename(ObjectId, String, CancellationToken)See Also