ConnectionInterfaceCollection Constructors

Definition

Initializes a new instance of the ConnectionInterfaceCollection class.

Overloads

ConnectionInterfaceCollection()

Initializes a new instance of the ConnectionInterfaceCollection class.

ConnectionInterfaceCollection(ICollection)

Initializes a new instance of the ConnectionInterfaceCollection class with the specified collection.

ConnectionInterfaceCollection(ConnectionInterfaceCollection, ICollection)

Initializes a new instance of the ConnectionInterfaceCollection class by combining the two specified collections.

ConnectionInterfaceCollection()

Initializes a new instance of the ConnectionInterfaceCollection class.

public:
 ConnectionInterfaceCollection();
public ConnectionInterfaceCollection ();
Public Sub New ()

Applies to

ConnectionInterfaceCollection(ICollection)

Initializes a new instance of the ConnectionInterfaceCollection class with the specified collection.

public:
 ConnectionInterfaceCollection(System::Collections::ICollection ^ connectionInterfaces);
public ConnectionInterfaceCollection (System.Collections.ICollection connectionInterfaces);
new System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection
Public Sub New (connectionInterfaces As ICollection)

Parameters

connectionInterfaces
ICollection

A collection of objects to convert into a ConnectionInterfaceCollection.

Exceptions

An object in connectionInterfaces cannot be added to a ConnectionInterfaceCollection collection.

Applies to

ConnectionInterfaceCollection(ConnectionInterfaceCollection, ICollection)

Initializes a new instance of the ConnectionInterfaceCollection class by combining the two specified collections.

public:
 ConnectionInterfaceCollection(System::Web::UI::WebControls::WebParts::ConnectionInterfaceCollection ^ existingConnectionInterfaces, System::Collections::ICollection ^ connectionInterfaces);
public ConnectionInterfaceCollection (System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection existingConnectionInterfaces, System.Collections.ICollection connectionInterfaces);
new System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection : System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection * System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection
Public Sub New (existingConnectionInterfaces As ConnectionInterfaceCollection, connectionInterfaces As ICollection)

Parameters

existingConnectionInterfaces
ConnectionInterfaceCollection

A ConnectionInterfaceCollection to combine with the connectionInterfaces object.

connectionInterfaces
ICollection

A collection to combine with the existingConnectionInterfaces object.

Exceptions

An object in connectionInterfaces cannot be added to a ConnectionInterfaceCollection collection.

Applies to