MPIO_REGISTERED_DSM WMI 클래스

WMI 클라이언트는 MPIO_REGISTERED_DSM WMI 클래스를 사용하여 시스템에 구성된 모든 DSM을 쿼리합니다.

class MPIO_REGISTERED_DSM
{
    [key, read]
     string InstanceName;
    [read] boolean Active;

    //
    // The Number of DSMs that have registered with MPIO.
    //
    [WmiDataId(1),
     read,
     Description("Number of registered DSMs.") : amended
    ] uint32 NumberDSMs;

    //
    // Variable-length array of DSM_PARAMETERS structures.
    // NOTE: Each entry will be ULONG aligned. App. writers
    // take note when iterating through the array.
    //
    [WmiDataId(2),
     read,
     Description("Counters information of registered DSMs.") : amended,
     WmiSizeIs("NumberDSMs")
    ] DSM_PARAMETERS DsmParameters[];
};

WMI 도구 모음에서 이 클래스 정의를 컴파일하면 MPIO_REGISTERED_DSM 데이터 구조가 생성됩니다. 이 WMI 클래스와 연결된 메서드는 없습니다.