NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlNode.FirstChild

A reference to the first child node of this node.

[Visual Basic]
Overridable Public ReadOnly Property FirstChild As XmlNode
[C#]
public XmlNode FirstChild {virtual get;}
[C++]
public: __property virtual XmlNode* get_FirstChild();
[JScript]
public function get FirstChild() : XmlNode;

Remarks

For nodes of type XmlDocument and XmlElement, this property is a reference to the first child node, or null if the element has no child nodes.

For all other node types, this property is null.

See Also

XmlNode Class | XmlNode Members | System.Xml Namespace | LastChild | Next | Parent | Previous