Click or drag to resize

IMongoIndexManagerTDocumentCreateOneAsync Method (CreateIndexModelTDocument, CreateOneIndexOptions, CancellationToken)

Creates an index.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
Task<string> CreateOneAsync(
	CreateIndexModel<TDocument> model,
	CreateOneIndexOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

model
Type: MongoDB.DriverCreateIndexModelTDocument
The model defining the index.
options (Optional)
Type: MongoDB.DriverCreateOneIndexOptions
The create index operation options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskString
A task whose result is the name of the index that was created.
See Also