DIWbemQualifierSet.GetNames

[This is preliminary documentation and subject to change.]

The DIWbemQualifierSet.GetNames method retrieves the names of all of the qualifiers available. Alternately, depending on the filter value of IFlags, this method retrieves the names of certain qualifiers.

You can access these qualifiers by name by using DIWbemQualifierSet.Get for each name. It is not an error for any given object to have zero qualifiers, so the number of strings in pNames on return can be zero, even though WBEM_NO_ERROR is returned.

DIWbemQualifierSet.GetNames(
  [in] lFlags As Long,
  [out] pNames As String 
) As Long
 

Parameters

lFlags
One of the following constants:
0 (Zero) Return the names of all qualifiers.
WBEM_FLAG_LOCAL_ONLY Return only the names of the local object. If the current qualifiers set refers to a property, return only the qualifiers set on this property, and not those propagated from another qualifier set. If the current qualifiers set refers to an instance, return only instance-specific qualifier names. If the current qualifiers set refers to a class, return only qualifiers local to the derived-most class.
WBEM_FLAG_PROPAGATED_ONLY Return only the names of qualifiers propagated from another object. For example, if the current qualifier set refers to a property, return only the qualifiers propagated to this property from another qualifier set, and not those set on this property itself. If the current qualifier set refers to an instance, only return qualifiers propagated from the class definition. If the current qualifier set refers to a class, only return qualifier names inherited from the superclasses.

pNames
String that that contains the requested names.

On error, no string is returned.

Return Values

WBEM_E_INVALID_PARAMETER An invalid parameter was specified, or the namespace could not be parsed.
WBEM_E_OUT_OF_MEMORY There was not enough memory to complete the operation.
WBEM_NO_ERROR Success.

See Also

DIWbemQualifierSet.Get

DIWbemQualifierSet.BeginEnumeration