ComputerCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ComputerCollection class.
Overloads
ComputerCollection(Utility) |
Initializes a new instance of the ComputerCollection class on the specified Utility domain. |
ComputerCollection(Utility, IComparer<String>) |
Initializes a new instance of the ComputerCollection class on the specified Utility domain and with the specified comparer interface. |
Remarks
The default constructor initializes any fields to their default values.
ComputerCollection(Utility)
Initializes a new instance of the ComputerCollection class on the specified Utility domain.
public:
ComputerCollection(Microsoft::SqlServer::Management::Utility::Utility ^ parent);
public ComputerCollection (Microsoft.SqlServer.Management.Utility.Utility parent);
new Microsoft.SqlServer.Management.Utility.ComputerCollection : Microsoft.SqlServer.Management.Utility.Utility -> Microsoft.SqlServer.Management.Utility.ComputerCollection
Public Sub New (parent As Utility)
Parameters
Remarks
The default constructor initializes any fields to their default values.
Applies to
ComputerCollection(Utility, IComparer<String>)
Initializes a new instance of the ComputerCollection class on the specified Utility domain and with the specified comparer interface.
public:
ComputerCollection(Microsoft::SqlServer::Management::Utility::Utility ^ parent, System::Collections::Generic::IComparer<System::String ^> ^ customComparer);
public ComputerCollection (Microsoft.SqlServer.Management.Utility.Utility parent, System.Collections.Generic.IComparer<string> customComparer);
new Microsoft.SqlServer.Management.Utility.ComputerCollection : Microsoft.SqlServer.Management.Utility.Utility * System.Collections.Generic.IComparer<string> -> Microsoft.SqlServer.Management.Utility.ComputerCollection
Public Sub New (parent As Utility, customComparer As IComparer(Of String))
Parameters
An IComparer String object that specifies the custom comparer interface.