Click or drag to resize

MongoIndexManagerBase<TDocument>.CreateOneAsync Method (IndexKeysDefinition<TDocument>, CreateIndexOptions, CancellationToken)

Note: This API is now obsolete.

Creates an index.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
[ObsoleteAttribute("Use CreateOneAsync with a CreateIndexModel instead.")]
public virtual Task<string> CreateOneAsync(
	IndexKeysDefinition<TDocument> keys,
	CreateIndexOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

keys
Type: MongoDB.Driver.IndexKeysDefinition<TDocument>
The keys.
options (Optional)
Type: MongoDB.Driver.CreateIndexOptions
The create index request options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<String>
A task whose result is the name of the index that was created.

Implements

IMongoIndexManager<TDocument>.CreateOneAsync(IndexKeysDefinition<TDocument>, CreateIndexOptions, CancellationToken)
See Also