IMongoDatabase.DropCollection Method (IClientSessionHandle, String, DropCollectionOptions, CancellationToken) |
Drops the collection with the specified name.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
Syntaxvoid DropCollection(
IClientSessionHandle session,
string name,
DropCollectionOptions options,
CancellationToken cancellationToken = default
)
Sub DropCollection (
session As IClientSessionHandle,
name As String,
options As DropCollectionOptions,
Optional cancellationToken As CancellationToken = Nothing
)
abstract DropCollection :
session : IClientSessionHandle *
name : string *
options : DropCollectionOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> unit
Parameters
- session
- Type: MongoDB.Driver.IClientSessionHandle
The session. - name
- Type: System.String
The name of the collection to drop. - options
- Type: MongoDB.Driver.DropCollectionOptions
The options. - cancellationToken (Optional)
- Type: System.Threading.CancellationToken
The cancellation token.
See Also