Gets the subclasses of 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 enumerateDeep As Boolean
Dim returnValue As List(Of IResultObject)
returnValue = instance.GetSubclasses(className, enumerateDeep)
|
Syntax
Visual Basic |
Public MustOverride Function GetSubclasses ( _
className As String, _
enumerateDeep As Boolean _
) As List(Of IResultObject)
|
C# |
public abstract List<IResultObject> GetSubclasses (
string className,
bool enumerateDeep
)
|
C++ |
public:
virtual List<IResultObject^>^ GetSubclasses (
String^ className,
bool enumerateDeep
) abstract
|
J# |
public abstract List<IResultObject> GetSubclasses (
String className,
boolean enumerateDeep
)
|
JScript |
public abstract function GetSubclasses (
className : String,
enumerateDeep : boolean
) : List<IResultObject>
|
Parameters
- className
-
[in] Name of a class.
- enumerateDeep
-
[in] true if recursive enumeration is requested into all
classes that are derived from the specified class. Set this
parameter to false to retrieve only immediate derived class
members.
Return Value
System.Collections.Generic.List object that represents
IResultObject interfaces for getting and setting result object
properties.
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