The MongoServerSettings type exposes the following members.

Constructors

  Name Description
MongoServerSettings()()()()
Creates a new instance of MongoServerSettings. Usually you would use a connection string instead.
MongoServerSettings(ConnectionMode, TimeSpan, MongoCredentials, GuidRepresentation, Boolean, TimeSpan, TimeSpan, Int32, Int32, String, SafeMode, IEnumerable<(Of <<'(MongoServerAddress>)>>), Boolean, TimeSpan, Int32, TimeSpan)
Creates a new instance of MongoServerSettings. Usually you would use a connection string instead.

Methods

  Name Description
Clone
Creates a clone of the settings.
Equals
Compares two MongoServerSettings instances.

(Overrides Object..::..Equals(Object).)

Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.

(Inherited from Object.)

Freeze
Freezes the settings to prevent any further changes to them.
GetHashCode
Gets the hash code.

(Overrides Object..::..GetHashCode()()()().)

GetType
Gets the Type of the current instance.

(Inherited from Object.)

MemberwiseClone
Creates a shallow copy of the current Object.

(Inherited from Object.)

ToString
Returns a string representation of the settings.

(Overrides Object..::..ToString()()()().)

Extension Methods

  Name Description
ToBson(Type) Overloaded.

Converts an object to a BSON document byte array.

(Defined by BsonExtensionMethods.)

ToBson(Type, IBsonSerializationOptions) Overloaded.

Converts an object to a BSON document byte array.

(Defined by BsonExtensionMethods.)

ToBson(Type, BsonBinaryWriterSettings) Overloaded.

Converts an object to a BSON document byte array.

(Defined by BsonExtensionMethods.)

ToBson(Type, IBsonSerializationOptions, BsonBinaryWriterSettings) Overloaded.

Converts an object to a BSON document byte array.

(Defined by BsonExtensionMethods.)

ToBsonDocument(Type) Overloaded.

Converts an object to a BsonDocument.

(Defined by BsonExtensionMethods.)

ToBsonDocument(Type, IBsonSerializationOptions) Overloaded.

Converts an object to a BsonDocument.

(Defined by BsonExtensionMethods.)

ToJson(Type) Overloaded.

Converts an object to a JSON string.

(Defined by BsonExtensionMethods.)

ToJson(Type, IBsonSerializationOptions) Overloaded.

Converts an object to a JSON string.

(Defined by BsonExtensionMethods.)

ToJson(Type, JsonWriterSettings) Overloaded.

Converts an object to a JSON string.

(Defined by BsonExtensionMethods.)

ToJson(Type, IBsonSerializationOptions, JsonWriterSettings) Overloaded.

Converts an object to a JSON string.

(Defined by BsonExtensionMethods.)

Properties

  Name Description
AddressFamily
Gets the AddressFamily for the IPEndPoint (derived from the IPv6 setting).
ConnectionMode
Gets or sets the connection mode.
ConnectTimeout
Gets or sets the connect timeout.
DefaultCredentials
Gets or sets the default credentials.
GuidRepresentation
Gets or sets the representation to use for Guids.
IPv6
Gets or sets whether to use IPv6.
IsFrozen
Gets whether the settings have been frozen to prevent further changes.
MaxConnectionIdleTime
Gets or sets the max connection idle time.
MaxConnectionLifeTime
Gets or sets the max connection life time.
MaxConnectionPoolSize
Gets or sets the max connection pool size.
MinConnectionPoolSize
Gets or sets the min connection pool size.
ReplicaSetName
Gets or sets the name of the replica set.
SafeMode
Gets or sets the SafeMode to use.
Server
Gets or sets the address of the server (see also Servers if using more than one address).
Servers
Gets or sets the list of server addresses (see also Server if using only one address).
SlaveOk
Gets or sets whether queries should be sent to secondary servers.
SocketTimeout
Gets or sets the socket timeout.
WaitQueueSize
Gets or sets the wait queue size.
WaitQueueTimeout
Gets or sets the wait queue timeout.

See Also

MongoServerSettings Members的更多相关文章

  1. AutoMapper:Unmapped members were found. Review the types and members below. Add a custom mapping expression, ignore, add a custom resolver, or modify the source/destination type

    异常处理汇总-后端系列 http://www.cnblogs.com/dunitian/p/4523006.html 应用场景:ViewModel==>Mode映射的时候出错 AutoMappe ...

  2. [XAF] How to define a business class at runtime or allow end-users to configure its members via the application UI?

    How to define a business class at runtime or allow end-users to configure its members via the applic ...

  3. JavaScript Patterns 5.6 Static Members

    Public Static Members // constructor var Gadget = function (price) { this.price = price; }; // a sta ...

  4. Effective Java 13 Minimize the accessibility of classes and members

    Information hiding is important for many reasons, most of which stem from the fact that it decouples ...

  5. C++类设计2(Class with pointer members)

    二 Class with pointer members(Class String) 1. 测试代码(使用效果) int main() { String s1(), String s2("h ...

  6. 【转载】#303 - Accessibility of Class Members

    Members of a class can have different kinds of accessibility. An accessibility keyword indicates wha ...

  7. Static Classes and Static Class Members

    Static Classes and Static Class Members A static class is basically the same as a non-static class, ...

  8. Private Members in JavaScript

    Private Members in JavaScript Douglas Crockford www.crockford.com JavaScript is the world's most mis ...

  9. (转) Special members

    原地址:http://www.cplusplus.com/doc/tutorial/classes2/   Special members [NOTE: This chapter requires p ...

随机推荐

  1. 第一个openGL程序

    一.工具的安装 因为要写C++程序,为了便捷,这里我安装的Visual Studio: 免费使用90天!安装好了之后,我们要为我们的开发安装相应的工具集: 因为我是要在windows上跑的,所以选择如 ...

  2. [置顶] VS 2017 众多重构插件

    孙广东  2017.7.22 http://blog.csdn.NET/u010019717 1.没有任何插件的情况下:  (就是Ctrl + .)   注意:这个.  要是英文的才行! 右键菜单也是 ...

  3. Swift 图片浏览器

    class ViewController: UIViewController, UIScrollViewDelegate{ var scrollView: UIScrollView? var imag ...

  4. bzoj 2212 Tree Rotations

    bzoj 2212 Tree Rotations 考虑一个子树 \(x\) 的左右儿子分别为 \(ls,rs\) .那么子树 \(x\) 内的逆序对数就是 \(ls\) 内的逆序对数,\(rs\) 内 ...

  5. 限制mongodb内存占用过高方法

    1.mongodb必须是以服务的方式启动的.即能用service mongodb start的方式启动 资源限制用这个命令systemctl set-property <servicename& ...

  6. ringojs 使用rp 包管理web 应用依赖

    rp 是一个类似npm 的包管理工具,我们可以使用package.json 定义依赖 然后执行rp install 即可,类似ringo-admin 的功能 其中packages 类似node 的no ...

  7. java的static研究

    (1)static关键字:可以用于修饰属性.方法和类. 1,属性:无论一个类生成了多少个对象,所有这些对象共同使用唯一的一份静态的成员变量(不能修饰临时变量 2,方法:static修饰的方法叫做静态, ...

  8. Pacemaker+Corosync搭建PostgreSQL集群

    https://my.oschina.net/aven92/blog/518928 · PostgreSQL中国社区: http://postgres.cn/index.php/home · Post ...

  9. bzoj 1002 [FJOI2007]轮状病毒——打表找规律

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1002 看 Zinn 的博客:https://www.cnblogs.com/Zinn/p/9 ...

  10. sql 如何更改表的字段属性

    alter table tablename alter column colname newDataType 比如:ALTER   TABLE   mytable ALTER COLUMN  myco ...