Click or drag to resize
MongoClientSettings Class
The settings for a MongoDB client.
Inheritance Hierarchy
SystemObject
  MongoDB.DriverMongoClientSettings

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.0.1
Syntax
public class MongoClientSettings : IEquatable<MongoClientSettings>, 
	IInheritableMongoClientSettings

The MongoClientSettings type exposes the following members.

Constructors
  NameDescription
Public methodMongoClientSettings
Creates a new instance of MongoClientSettings. Usually you would use a connection string instead.
Top
Methods
  NameDescription
Public methodClone
Creates a clone of the settings.
Public methodEquals(Object)
Determines whether the specified Object is equal to this instance.
(Overrides ObjectEquals(Object).)
Public methodEquals(MongoClientSettings)
Determines whether the specified MongoClientSettings is equal to this instance.
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 methodFreeze
Freezes the settings.
Public methodStatic memberFromUrl
Gets a MongoClientSettings object intialized with values from a MongoURL.
Public methodFrozenCopy
Returns a frozen copy of the settings.
Public methodGetHashCode
Gets the hash code.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string representation of the settings.
(Overrides ObjectToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Determines whether two MongoClientSettings instances are equal.
Public operatorStatic memberInequality
Determines whether two MongoClientSettings instances are not equal.
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
Properties
  NameDescription
Public propertyClusterConfigurator
Gets or sets the cluster configurator.
Public propertyConnectionMode
Gets or sets the connection mode.
Public propertyConnectTimeout
Gets or sets the connect timeout.
Public propertyCredentials
Gets or sets the credentials.
Public propertyGuidRepresentation
Gets or sets the representation to use for Guids.
Public propertyIPv6
Gets or sets a value indicating whether to use IPv6.
Public propertyIsFrozen
Gets a value indicating whether the settings have been frozen to prevent further changes.
Public propertyLocalThreshold
Gets or sets the local threshold.
Public propertyMaxConnectionIdleTime
Gets or sets the max connection idle time.
Public propertyMaxConnectionLifeTime
Gets or sets the max connection life time.
Public propertyMaxConnectionPoolSize
Gets or sets the max connection pool size.
Public propertyMinConnectionPoolSize
Gets or sets the min connection pool size.
Public propertyReadEncoding
Gets or sets the Read Encoding.
Public propertyReadPreference
Gets or sets the read preferences.
Public propertyReplicaSetName
Gets or sets the name of the replica set.
Public propertyServer
Gets or sets the address of the server (see also Servers if using more than one address).
Public propertyServers
Gets or sets the list of server addresses (see also Server if using only one address).
Public propertySocketTimeout
Gets or sets the socket timeout.
Public propertySslSettings
Gets or sets the SSL settings.
Public propertyUseSsl
Gets or sets a value indicating whether to use SSL.
Public propertyVerifySslCertificate
Gets or sets a value indicating whether to verify an SSL certificate.
Public propertyWaitQueueSize
Gets or sets the wait queue size.
Public propertyWaitQueueTimeout
Gets or sets the wait queue timeout.
Public propertyWriteConcern
Gets or sets the WriteConcern to use.
Public propertyWriteEncoding
Gets or sets the Write Encoding.
Top
See Also