Click or drag to resize

IMongoSearchIndexManager Interface

An interface representing methods used to create, delete and modify search indexes.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public interface IMongoSearchIndexManager

The IMongoSearchIndexManager type exposes the following members.

Methods
  NameDescription
Public methodCreateMany
Creates multiple indexes.
Public methodCreateManyAsync
Creates multiple indexes.
Public methodCreateOne(CreateSearchIndexModel, CancellationToken)
Creates a search index.
Public methodCreateOne(BsonDocument, String, CancellationToken)
Creates a search index.
Public methodCreateOneAsync(CreateSearchIndexModel, CancellationToken)
Creates a search index.
Public methodCreateOneAsync(BsonDocument, String, CancellationToken)
Creates a search index.
Public methodDropOne
Drops an index by its name.
Public methodDropOneAsync
Drops an index by its name.
Public methodList
Lists the search indexes.
Public methodListAsync
Lists the search indexes.
Public methodUpdate
Update the search index.
Public methodUpdateAsync
Update the search index.
Top
See Also