Click or drag to resize

MongoClient Class

Base class for implementors of IMongoClient.
Inheritance Hierarchy

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public class MongoClient : MongoClientBase

The MongoClient type exposes the following members.

Constructors
  NameDescription
Public methodMongoClient()
Initializes a new instance of the MongoClient class.
Public methodMongoClient(String)
Initializes a new instance of the MongoClient class.
Public methodMongoClient(MongoClientSettings)
Initializes a new instance of the MongoClient class.
Public methodMongoClient(MongoUrl)
Initializes a new instance of the MongoClient class.
Top
Properties
Methods
  NameDescription
Public methodDropDatabase(String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBase.DropDatabase(String, CancellationToken).)
Public methodDropDatabase(IClientSessionHandle, String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBase.DropDatabase(IClientSessionHandle, String, CancellationToken).)
Public methodDropDatabaseAsync(String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBase.DropDatabaseAsync(String, CancellationToken).)
Public methodDropDatabaseAsync(IClientSessionHandle, String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBase.DropDatabaseAsync(IClientSessionHandle, String, CancellationToken).)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetDatabase
Gets a database.
(Overrides MongoClientBase.GetDatabase(String, MongoDatabaseSettings).)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodListDatabases(CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBase.ListDatabases(CancellationToken).)
Public methodListDatabases(IClientSessionHandle, CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBase.ListDatabases(IClientSessionHandle, CancellationToken).)
Public methodListDatabasesAsync(CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBase.ListDatabasesAsync(CancellationToken).)
Public methodListDatabasesAsync(IClientSessionHandle, CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBase.ListDatabasesAsync(IClientSessionHandle, CancellationToken).)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodStartSession
Starts a client sesssion.
(Overrides MongoClientBase.StartSession(ClientSessionOptions, CancellationToken).)
Public methodStartSessionAsync
Starts a client sesssion.
(Overrides MongoClientBase.StartSessionAsync(ClientSessionOptions, CancellationToken).)
Public methodToString (Inherited from Object.)
Public methodWithReadConcern
Returns a new IMongoClient instance with a different read concern setting.
(Overrides MongoClientBase.WithReadConcern(ReadConcern).)
Public methodWithReadPreference
Returns a new IMongoClient instance with a different read preference setting.
(Overrides MongoClientBase.WithReadPreference(ReadPreference).)
Public methodWithWriteConcern
Returns a new IMongoClient instance with a different write concern setting.
(Overrides MongoClientBase.WithWriteConcern(WriteConcern).)
Top
Extension Methods
  NameDescription
Public Extension MethodGetServer
Gets a MongoServer object using this client's settings.
(Defined by MongoClientExtensions.)
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