VolumeCollection 构造函数

定义

初始化 VolumeCollection 类的新实例。

重载

VolumeCollection(Computer)

在指定的计算机上初始化 VolumeCollection 类的新实例。

VolumeCollection(Computer, IComparer<String>)

在指定的计算机上使用指定的比较器接口初始化 VolumeCollection 类的新实例。

注解

默认构造函数将所有字段初始化为其默认值。

VolumeCollection(Computer)

在指定的计算机上初始化 VolumeCollection 类的新实例。

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

参数

parent
Computer

一个 Computer 对象,该对象指定集合的父级。

注解

默认构造函数将所有字段初始化为其默认值。

适用于

VolumeCollection(Computer, IComparer<String>)

在指定的计算机上使用指定的比较器接口初始化 VolumeCollection 类的新实例。

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

参数

parent
Computer

一个 Computer 对象,该对象指定集合的父级。

customComparer
IComparer<String>

一个 IComparer<T> 对象,该对象指定自定义比较器接口。

适用于