XComment.NodeType Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the node type for this node.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

Syntax

'Declaration
Public Overrides ReadOnly Property NodeType As XmlNodeType
public override XmlNodeType NodeType { get; }

Property Value

Type: System.Xml.XmlNodeType
The node type. For XComment objects, this value is Comment.

Remarks

Because all classes that derive from XObject contain a NodeType property, you can write code that operates on collections of concrete subclass of XObject. Your code can then test for the node type of each node in the collection.

Examples

The following example creates a comment node and prints its node type.

Dim output As New StringBuilder
Dim com As XComment = New XComment("This is a comment")
Dim node As XNode = com
output.Append(node.NodeType.ToString())
output.Append(Environment.NewLine)

OutputTextBlock.Text = output.ToString()
StringBuilder output = new StringBuilder();
XComment com = new XComment("This is a comment");
XNode node = com;
output.Append(node.NodeType + Environment.NewLine);
output.Append(Environment.NewLine);

OutputTextBlock.Text = output.ToString();

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.