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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
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