Represents summary information for a single management class in Configuration Manager 2007 that is indicated by a ManagementClassDescription XML element. An example of a management class is SMS_Advertisement Server WMI Class. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ManagementClassDescription

Syntax

Visual Basic
<SerializableAttribute> _
<XmlRootAttribute("ManagementClassDescription", IsNullable:=False)> _
Public Class ManagementClassDescription
C#
[SerializableAttribute] 
[XmlRootAttribute("ManagementClassDescription", IsNullable=false)] 
public class ManagementClassDescription
C++
[SerializableAttribute] 
[XmlRootAttribute(L"ManagementClassDescription", IsNullable=false)] 
public ref class ManagementClassDescription
J#
/** @attribute SerializableAttribute() */ 
/** @attribute XmlRootAttribute("ManagementClassDescription", IsNullable=false) */ 
public class ManagementClassDescription
JScript
SerializableAttribute 
XmlRootAttribute("ManagementClassDescription", IsNullable=false) 
public class ManagementClassDescription

Example

The following example shows the use of the ManagementClassDescription XML element, often included in a group of management class descriptions:

  Copy Code
<ManagementClassDescription Name="SMS_Advertisement" SuperclassName="SMS_BaseClass" QueryEnabled="true">

Remarks

Information that is represented by this class includes a collection of properties and other attributes, for example, description and icon information, that are used to manage the Configuration Manager console display.


Inheritance Hierarchy

System.Object
  Microsoft.ConfigurationManagement.AdminConsole.Schema.ManagementClassDescription

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