CatalogCollection Constructors

Definition

Initializes a new instance of the CatalogCollection class.

Overloads

CatalogCollection(IntegrationServices)

Initializes a new instance of the CatalogCollection class with the specified parent.

CatalogCollection(IntegrationServices, IComparer<String>)

Initializes a new instance of the CatalogCollection class with the specified parent and custom comparer.

CatalogCollection(IntegrationServices)

Initializes a new instance of the CatalogCollection class with the specified parent.

public:
 CatalogCollection(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices ^ parent);
public CatalogCollection (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices parent);
new Microsoft.SqlServer.Management.IntegrationServices.CatalogCollection : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices -> Microsoft.SqlServer.Management.IntegrationServices.CatalogCollection
Public Sub New (parent As IntegrationServices)

Parameters

parent
IntegrationServices

The parent of the catalog.

Applies to

CatalogCollection(IntegrationServices, IComparer<String>)

Initializes a new instance of the CatalogCollection class with the specified parent and custom comparer.

public:
 CatalogCollection(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices ^ parent, System::Collections::Generic::IComparer<System::String ^> ^ customComparer);
public CatalogCollection (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices parent, System.Collections.Generic.IComparer<string> customComparer);
new Microsoft.SqlServer.Management.IntegrationServices.CatalogCollection : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices * System.Collections.Generic.IComparer<string> -> Microsoft.SqlServer.Management.IntegrationServices.CatalogCollection
Public Sub New (parent As IntegrationServices, customComparer As IComparer(Of String))

Parameters

parent
IntegrationServices

The parent of the catalog.

customComparer
IComparer<String>

The custom comparer.

Applies to