Construtor DacInstanceCollection (DacDomain, IComparer(String))
Initializes a new instance of the DacPackageCollection class with the specified parent and IComparer interface.
Namespace: Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (em Microsoft.SqlServer.Management.Dac.dll)
Sintaxe
'Declaração
Public Sub New ( _
parent As DacDomain, _
customComparer As IComparer(Of String) _
)
'Uso
Dim parent As DacDomain
Dim customComparer As IComparer(Of String)
Dim instance As New DacInstanceCollection(parent, _
customComparer)
public DacInstanceCollection(
DacDomain parent,
IComparer<string> customComparer
)
public:
DacInstanceCollection(
DacDomain^ parent,
IComparer<String^>^ customComparer
)
new :
parent:DacDomain *
customComparer:IComparer<string> -> DacInstanceCollection
public function DacInstanceCollection(
parent : DacDomain,
customComparer : IComparer<String>
)
Parâmetros
- parent
Tipo: Microsoft.SqlServer.Management.Dac. . :: . .DacDomain
A DacDomain object that specifies the instance of the Database Engine that contains the DAC instances.
- customComparer
Tipo: System.Collections.Generic. . :: . .IComparer< (Of < ( <'String> ) > ) >
A [T:System.Collections.Generic.IComparer<System.String>] object that provides the filter.
Comentários
The IComparer interface provides a custom filter when creating a new collection by comparing the given string with the DAC instance.
Consulte também