Gets the names of properties that are defined by the specified class. 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 returnValue As String()

returnValue = instance.GetPropertyNames(className)

Syntax

Visual Basic
Public MustOverride Function GetPropertyNames ( _
		className As String _
) As String()
C#
public abstract string[] GetPropertyNames (
		string className
)
C++
public:
virtual array<String^>^ GetPropertyNames (
		String^ className
) abstract
J#
public abstract String[] GetPropertyNames (
		String className
)
JScript
public abstract function GetPropertyNames (
		className : String
) : String[]

Parameters

className

[in] Name of the class.

Return Value

Array of strings that identify the property names for the class.

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