Represents summary information for a Configuration Manager 2007 console node, consisting of a scope pane and a results pane. The console node is indicated by a NodeDescription XML element. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As NodeDescription

Syntax

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

Example

The following example shows the use of the NodeDescription XML element:

  Copy Code
  <NodeDescription>
	<ScopePaneItemDescriptions>
	<ScopePaneItemDescription NamespaceGuid="91a66c1c-0407-40e7-8696-fd382aca5ad2">
		<Queries>
		<QueryDescription NamespaceGuid="a0f56f00-0fce-4fff-a908-0a199f119265" Type="WQL" DisplayName="##SUB:__CLASS##" HelpTopic="86cfbf68-db41-44fa-9ae6-948cf4413a4e">
			 <ViewAssemblyDescriptions>
			 <ViewAssemblyDescription>
				 <Assembly>AdminUI.SmsObjectView.dll</Assembly>
					<Type>Microsoft.ConfigurationManagement.AdminConsole.SmsObjectView.SmsObjectViewDescription</Type>
			 </ViewAssemblyDescription>
			 </ViewAssemblyDescriptions>
			 <Query>SELECT * FROM meta_class</Query>
		 </QueryDescription>
		 </Queries>
		</ScopePaneItemDescription>
	 </ScopePaneItemDescriptions>
	 <ResultPaneItemDescriptions>
		 <ResultPaneItemDescription NamespaceGuid="324a6ff7-2266-4b0a-b0cd-7fc9721e553f" />
	 </ResultPaneItemDescriptions>
	 <NodeDescriptions />
  </NodeDescription>

Inheritance Hierarchy

System.Object
  Microsoft.ConfigurationManagement.AdminConsole.Schema.NodeDescription

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