MongoIndexManagerBaseTDocumentDropAll Method (IClientSessionHandle, DropIndexOptions, CancellationToken) |
Drops all the indexes.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public virtual void DropAll(
IClientSessionHandle session,
DropIndexOptions options,
CancellationToken cancellationToken = default
)
Public Overridable Sub DropAll (
session As IClientSessionHandle,
options As DropIndexOptions,
Optional cancellationToken As CancellationToken = Nothing
)
abstract DropAll :
session : IClientSessionHandle *
options : DropIndexOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> unit
override DropAll :
session : IClientSessionHandle *
options : DropIndexOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> unit
Parameters
- session
- Type: MongoDB.DriverIClientSessionHandle
The session. - options
- Type: MongoDB.DriverDropIndexOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Implements
IMongoIndexManagerTDocumentDropAll(IClientSessionHandle, DropIndexOptions, CancellationToken)See Also