MPIO_PATH_INFORMATION WMI 클래스
WMI 클라이언트는 MPIO_PATH_INFORMATION WMI 클래스를 사용하여 MPIO 디스크와 연결된 모든 경로에 대한 정보를 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[];
};
이 클래스 정의는 WMI 도구 모음에서 컴파일되면 MPIO_PATH_INFORMATION 데이터 구조를 생성합니다. 이 WMI 클래스와 연결된 메서드는 없습니다.