ConnectionManagementElement Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ConnectionManagementElement class.
Overloads
ConnectionManagementElement() |
Initializes a new instance of the ConnectionManagementElement class. |
ConnectionManagementElement(String, Int32) |
Initializes a new instance of the ConnectionManagementElement class with the specified address and connection limit information. |
ConnectionManagementElement()
Initializes a new instance of the ConnectionManagementElement class.
public:
ConnectionManagementElement();
public ConnectionManagementElement ();
Public Sub New ()
See also
Applies to
ConnectionManagementElement(String, Int32)
Initializes a new instance of the ConnectionManagementElement class with the specified address and connection limit information.
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)
Parameters
- address
- String
A string that identifies the address of a remote computer.
- maxConnection
- Int32
An integer that identifies the maximum number of connections allowed to address
from the local computer.
Remarks
This constructor sets the Address property to address
and the MaxConnection property to maxConnection
.