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.LastChild

A reference to the last child node of this node.

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

Remarks

For nodes of type XmlDocument and XmlElement, this property is a reference to the last 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 | FirstChild | Next | Parent | Previous