ConnectionManagementElement Constructors

Definition

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.

See also

Applies to