Gets the qualifier names for the specified class and property.
Namespace:
Microsoft.ConfigurationManagement.ManagementProvider
Assembly:
Microsoft.ConfigurationManagement.ManagementProvider (in
microsoft.configurationmanagement.managementprovider.dll)
Usage
Visual Basic |
Dim instance As ConnectionManagerBase
Dim className As String
Dim propertyName As String
Dim returnValue As String()
returnValue = instance.GetQualifierNames(className, propertyName)
|
Syntax
Visual Basic |
Public MustOverride Function GetQualifierNames ( _
className As String, _
propertyName As String _
) As String()
|
C# |
public abstract string[] GetQualifierNames (
string className,
string propertyName
)
|
C++ |
public:
virtual array<String^>^ GetQualifierNames (
String^ className,
String^ propertyName
) abstract
|
J# |
public abstract String[] GetQualifierNames (
String className,
String propertyName
)
|
JScript |
public abstract function GetQualifierNames (
className : String,
propertyName : String
) : String[]
|
Parameters
- className
-
[in] Name of a class.
- propertyName
-
[in] Name of a property that is defined by the specified
class.
Return Value
Array of strings that identify the qualifier names for the class
and the property.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2003,Windows Vista
See Also