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 qualifierName As String Dim returnValue As Object returnValue = instance.GetQualifierValue(className, propertyName, qualifierName) |
Syntax
Visual Basic |
---|
Public MustOverride Function GetQualifierValue ( _ className As String, _ propertyName As String, _ qualifierName As String _ ) As Object |
C# |
---|
public abstract Object GetQualifierValue ( string className, string propertyName, string qualifierName ) |
C++ |
---|
public: virtual Object^ GetQualifierValue ( String^ className, String^ propertyName, String^ qualifierName ) abstract |
J# |
---|
public abstract Object GetQualifierValue ( String className, String propertyName, String qualifierName ) |
JScript |
---|
public abstract function GetQualifierValue ( className : String, propertyName : String, qualifierName : String ) : Object |
Parameters
- className
-
[in] Name of a class.
- propertyName
-
[in] Name of a property that is defined by the class.
- qualifierName
-
[in] Name of a qualifier.
Return Value
System.Object instance identifying the qualifier value.Remarks
The format and contained information of the returned object are dependent on the underlying technology of the connection manager and the management provider.
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.