DeployedDacCollection Constructors

Definition

Initializes a new instance of the DeployedDacCollection class.

Overloads

DeployedDacCollection(Utility)

Initializes a new instance of the DeployedDacCollection class on the specified imported object.

DeployedDacCollection(Utility, IComparer<String>)

Initializes a new instance of the DeployedDacCollection class on the specified imported object and with the specified comparer interface.

Remarks

The default constructor initializes any fields to their default values.

DeployedDacCollection(Utility)

Initializes a new instance of the DeployedDacCollection class on the specified imported object.

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

Parameters

parent
Utility

A Microsoft.SqlServer.Management.Utility.ImportedObject object that specifies the parent of the collection.

Remarks

The default constructor initializes any fields to their default values.

Applies to

DeployedDacCollection(Utility, IComparer<String>)

Initializes a new instance of the DeployedDacCollection class on the specified imported object and with the specified comparer interface.

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

Parameters

parent
Utility

A Utility object that specifies the parent of the collection.

customComparer
IComparer<String>

A IComparer<T> object that specifies the custom comparer interface.

Applies to