Gets or sets the name of the class for the root node. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As RootNodeDescription
Dim value As String

value = instance.RootClass

instance.RootClass = value

Syntax

Visual Basic
<XmlAttributeAttribute("ObjectClass")> _
Public Property RootClass As String
C#
[XmlAttributeAttribute("ObjectClass")] 
public string RootClass { get; set; }
C++
[XmlAttributeAttribute(L"ObjectClass")] 
public:
property String^ RootClass {
		String^ get ();
		void set (String^ value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public String get_RootClass ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_RootClass (String value)
JScript
DebuggerStepThroughAttribute 
public function get RootClass () : String

DebuggerStepThroughAttribute 
public function set RootClass (value : String)

Property Value

Class name string.

Remarks

This property is used to identify the managed type for the properties dialog box, when it is opened from the node root. It is also used to identify the managed type for container classes, for example, folders, because it indicates the type of objects a folder will contain.


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