Click or drag to resize

MachineDisks Property

List of disks

Namespace:  VMInfoFace.Data
Assembly:  VMInfoFace.Data (in VMInfoFace.Data.dll) Version: 21.5.28.1 (21.5.28.1171)
Syntax
public List<string> Disks { get; set; }

Property Value

Type: ListString
Examples
This example read all disks
StringBuilder Text = new StringBuilder();
Text.AppendLine("Disks:");
foreach (string DiskName in Machine.Disks)
{
    Text.AppendLine(DiskName);
}
See Also