Volume.TotalSpaceUsed 属性
Gets the total used storage on the volume in megabytes.
命名空间: Microsoft.SqlServer.Management.Utility
程序集: Microsoft.SqlServer.Management.Utility(在 Microsoft.SqlServer.Management.Utility.dll 中)
语法
声明
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property TotalSpaceUsed As Single
Get
用法
Dim instance As Volume
Dim value As Single
value = instance.TotalSpaceUsed
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public float TotalSpaceUsed { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property float TotalSpaceUsed {
float get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member TotalSpaceUsed : float32
function get TotalSpaceUsed () : float
属性值
类型:System.Single
A Double object value that represents the total used storage on the volume in megabytes.
示例
VC#
System.Console.WriteLine(volume.TotalSpaceUsed);
VB
System.Console.WriteLine(volume.TotalSpaceUsed)
PowerShell
Write-Host $volume.TotalSpaceUsed