Click or drag to resize

MongoIndexManagerBaseTDocument Class

Inheritance Hierarchy
SystemObject
  MongoDB.DriverMongoIndexManagerBaseTDocument

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public abstract class MongoIndexManagerBase<TDocument> : IMongoIndexManager<TDocument>

Type Parameters

TDocument
The type of the document.

The MongoIndexManagerBaseTDocument type exposes the following members.

Constructors
  NameDescription
Protected methodMongoIndexManagerBaseTDocument
Initializes a new instance of the MongoIndexManagerBaseTDocument class
Top
Properties
  NameDescription
Public propertyCollectionNamespace
Gets the namespace of the collection.
Public propertyDocumentSerializer
Gets the document serializer.
Public propertySettings
Gets the collection settings.
Top
Methods
  NameDescription
Public methodCreateMany(IEnumerableCreateIndexModelTDocument, CancellationToken)
Creates multiple indexes.
Public methodCreateMany(IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)
Creates multiple indexes.
Public methodCreateMany(IClientSessionHandle, IEnumerableCreateIndexModelTDocument, CancellationToken)
Creates multiple indexes.
Public methodCreateMany(IClientSessionHandle, IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)
Creates multiple indexes.
Public methodCreateManyAsync(IEnumerableCreateIndexModelTDocument, CancellationToken)
Creates multiple indexes.
Public methodCreateManyAsync(IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)
Creates multiple indexes.
Public methodCreateManyAsync(IClientSessionHandle, IEnumerableCreateIndexModelTDocument, CancellationToken)
Creates multiple indexes.
Public methodCreateManyAsync(IClientSessionHandle, IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)
Creates multiple indexes.
Public methodCreateOne(CreateIndexModelTDocument, CreateOneIndexOptions, CancellationToken)
Creates an index.
Public methodCreateOne(IndexKeysDefinitionTDocument, CreateIndexOptions, CancellationToken) Obsolete.
Creates an index.
Public methodCreateOne(IClientSessionHandle, CreateIndexModelTDocument, CreateOneIndexOptions, CancellationToken)
Creates an index.
Public methodCreateOne(IClientSessionHandle, IndexKeysDefinitionTDocument, CreateIndexOptions, CancellationToken) Obsolete.
Creates an index.
Public methodCreateOneAsync(CreateIndexModelTDocument, CreateOneIndexOptions, CancellationToken)
Creates an index.
Public methodCreateOneAsync(IndexKeysDefinitionTDocument, CreateIndexOptions, CancellationToken) Obsolete.
Creates an index.
Public methodCreateOneAsync(IClientSessionHandle, CreateIndexModelTDocument, CreateOneIndexOptions, CancellationToken)
Creates an index.
Public methodCreateOneAsync(IClientSessionHandle, IndexKeysDefinitionTDocument, CreateIndexOptions, CancellationToken) Obsolete.
Creates an index.
Public methodDropAll(CancellationToken)
Drops all the indexes.
Public methodDropAll(DropIndexOptions, CancellationToken)
Drops all the indexes.
Public methodDropAll(IClientSessionHandle, CancellationToken)
Drops all the indexes.
Public methodDropAll(IClientSessionHandle, DropIndexOptions, CancellationToken)
Drops all the indexes.
Public methodDropAllAsync(CancellationToken)
Drops all the indexes.
Public methodDropAllAsync(DropIndexOptions, CancellationToken)
Drops all the indexes.
Public methodDropAllAsync(IClientSessionHandle, CancellationToken)
Drops all the indexes.
Public methodDropAllAsync(IClientSessionHandle, DropIndexOptions, CancellationToken)
Drops all the indexes.
Public methodDropOne(String, CancellationToken)
Drops an index by its name.
Public methodDropOne(String, DropIndexOptions, CancellationToken)
Drops an index by its name.
Public methodDropOne(IClientSessionHandle, String, CancellationToken)
Drops an index by its name.
Public methodDropOne(IClientSessionHandle, String, DropIndexOptions, CancellationToken)
Drops an index by its name.
Public methodDropOneAsync(String, CancellationToken)
Drops an index by its name.
Public methodDropOneAsync(String, DropIndexOptions, CancellationToken)
Drops an index by its name.
Public methodDropOneAsync(IClientSessionHandle, String, CancellationToken)
Drops an index by its name.
Public methodDropOneAsync(IClientSessionHandle, String, DropIndexOptions, CancellationToken)
Drops an index by its name.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodList(CancellationToken)
Lists the indexes.
Public methodList(IClientSessionHandle, CancellationToken)
Lists the indexes.
Public methodListAsync(CancellationToken)
Lists the indexes.
Public methodListAsync(IClientSessionHandle, CancellationToken)
Lists the indexes.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodToBson
Serializes an object to a BSON byte array.
(Defined by BsonExtensionMethods.)
Public Extension MethodToBsonDocument
Serializes an object to a BsonDocument.
(Defined by BsonExtensionMethods.)
Public Extension MethodToJson
Serializes an object to a JSON string.
(Defined by BsonExtensionMethods.)
Top
See Also