IGridFSBucket.Delete Method |
Deletes a file from GridFS.
Namespace: MongoDB.Driver.GridFSAssembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.2.0
Syntaxvoid Delete(
ObjectId id,
CancellationToken cancellationToken = null
)
Sub Delete (
id As ObjectId,
Optional cancellationToken As CancellationToken = Nothing
)
abstract Delete :
id : ObjectId *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
Parameters
- id
- Type: MongoDB.Bson.ObjectId
The file id. - cancellationToken (Optional)
- Type: System.Threading.CancellationToken
The cancellation token.
See Also