2.2.46 MethodQualifiers

MethodQualifiers is a set of qualifiers that are applicable to the method.

 MethodQualifiers = HeapQualifierSetRef

MethodQualifiers MUST be a HeapQualifierSetRef (section 2.2.47) in the MethodHeap (section 2.2.52). The QualifierSet (section 2.2.59) referred to by the HeapQualifierSetRef is the CIM qualifiers set that is applicable to the method. For example, in the following CIM class, the execute CIM qualifier and performance CIM qualifier are method-level qualifiers; however, in and out are parameter-level qualifiers.

  
 class MyClass2  :  MyClass
 {
    [execute, performance={"fast", "sideffects"}] 
       uint32 Restart([in] string ServiceName, [out] int Status);
 }