ConnectionManagementElement 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ConnectionManagementElement 类的新实例。
重载
ConnectionManagementElement() |
初始化 ConnectionManagementElement 类的新实例。 |
ConnectionManagementElement(String, Int32) |
用指定的地址和连接限制信息初始化 ConnectionManagementElement 类的新实例。 |
ConnectionManagementElement()
初始化 ConnectionManagementElement 类的新实例。
public:
ConnectionManagementElement();
public ConnectionManagementElement ();
Public Sub New ()
另请参阅
适用于
ConnectionManagementElement(String, Int32)
用指定的地址和连接限制信息初始化 ConnectionManagementElement 类的新实例。
public:
ConnectionManagementElement(System::String ^ address, int maxConnection);
public ConnectionManagementElement (string address, int maxConnection);
new System.Net.Configuration.ConnectionManagementElement : string * int -> System.Net.Configuration.ConnectionManagementElement
Public Sub New (address As String, maxConnection As Integer)
参数
- address
- String
一个字符串,它标识远程计算机的地址。
- maxConnection
- Int32
一个整数,它标识所允许的从本地计算机到 address
的最大连接数。
注解
此构造函数将 Address 属性设置为 address
,将 MaxConnection 属性设置为 maxConnection
。