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 MongoClientBaseDropDatabase(String, CancellationToken).)
Public methodDropDatabase(IClientSessionHandle, String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBaseDropDatabase(IClientSessionHandle, String, CancellationToken).)
Public methodDropDatabaseAsync(String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBaseDropDatabaseAsync(String, CancellationToken).)
Public methodDropDatabaseAsync(IClientSessionHandle, String, CancellationToken)
Drops the database with the specified name.
(Overrides MongoClientBaseDropDatabaseAsync(IClientSessionHandle, String, CancellationToken).)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetDatabase
Gets a database.
(Overrides MongoClientBaseGetDatabase(String, MongoDatabaseSettings).)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodListDatabases(CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBaseListDatabases(CancellationToken).)
Public methodListDatabases(IClientSessionHandle, CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBaseListDatabases(IClientSessionHandle, CancellationToken).)
Public methodListDatabasesAsync(CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBaseListDatabasesAsync(CancellationToken).)
Public methodListDatabasesAsync(IClientSessionHandle, CancellationToken)
Lists the databases on the server.
(Overrides MongoClientBaseListDatabasesAsync(IClientSessionHandle, CancellationToken).)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodStartSession
Starts a client sesssion.
(Overrides MongoClientBaseStartSession(ClientSessionOptions, CancellationToken).)
Public methodStartSessionAsync
Starts a client sesssion.
(Overrides MongoClientBaseStartSessionAsync(ClientSessionOptions, CancellationToken).)
Public methodToString (Inherited from Object.)
Public methodWithReadConcern
Returns a new IMongoClient instance with a different read concern setting.
(Overrides MongoClientBaseWithReadConcern(ReadConcern).)
Public methodWithReadPreference
Returns a new IMongoClient instance with a different read preference setting.
(Overrides MongoClientBaseWithReadPreference(ReadPreference).)
Public methodWithWriteConcern
Returns a new IMongoClient instance with a different write concern setting.
(Overrides MongoClientBaseWithWriteConcern(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