Volume.Name プロパティ
ボリュームの名前を指定する String 値を取得します。
名前空間: Microsoft.SqlServer.Management.Utility
アセンブリ: Microsoft.SqlServer.Management.Utility (Microsoft.SqlServer.Management.Utility.dll)
構文
'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
<SfcKeyAttribute()> _
Public ReadOnly Property Name As String
Get
'使用
Dim instance As Volume
Dim value As String
value = instance.Name
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
[SfcKeyAttribute()]
public string Name { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
[SfcKeyAttribute()]
public:
property String^ Name {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
[<SfcKeyAttribute()>]
member Name : string
function get Name () : String
プロパティ値
型: System.String
ボリュームの名前を示す String 値です。
使用例
VC#
System.Console.WriteLine(volume.Name);
VB
System.Console.WriteLine(volume.Name)
PowerShell
Write-Host $volume.Name