IMongoIndexManagerTDocumentDropAllAsync Method (DropIndexOptions, CancellationToken) | 
 
            Drops all the indexes.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
SyntaxTask DropAllAsync(
	DropIndexOptions options,
	CancellationToken cancellationToken = default
)
Function DropAllAsync ( 
	options As DropIndexOptions,
	Optional cancellationToken As CancellationToken = Nothing
) As Task
abstract DropAllAsync : 
        options : DropIndexOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task 
Parameters
- options
 - Type: MongoDB.DriverDropIndexOptions
The options. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
Task
            A task.
            
See Also