clase WMI de MPIO_PATH_INFORMATION
Un cliente WMI usa la clase WMI MPIO_PATH_INFORMATION para consultar al controlador MPIO información sobre todas las rutas de acceso asociadas a un disco MPIO.
class MPIO_PATH_INFORMATION
{
[key, read]
string InstanceName;
[read] boolean Active;
//
// Number of paths to the device.
//
[WmiDataId(1),
read,
Description("Number of Paths in use") : amended
] uint32 NumberPaths;
//
// Pad for data alignment.
//
[WmiDataId(2),
read,
Description("Pad for ULONGLONG Alignment.") : amended
] uint32 Pad;
//
// Array containing each path's information.
// Note that each of these are ULONGLONG aligned.
//
[WmiDataId(3),
read,
Description("Array of Adapter/Path Information.") : amended,
WmiSizeIs("NumberPaths")
] MPIO_ADAPTER_INFORMATION PathList[];
};
Cuando el conjunto de herramientas WMI compila esta definición de clase, genera la estructura de datos MPIO_PATH_INFORMATION . No hay métodos asociados a esta clase WMI.