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!

XmlReader.IsEndTag

Tests if the current content node is an end tag.

[Visual Basic]
Public Function IsEndTag() As Boolean
[C#]
public bool IsEndTag();
[C++]
public: bool IsEndTag();
[JScript]
public function IsEndTag() : Boolean;

Return Value

true if the resulting node is an end tag, false otherwise.

Exceptions

Exception Type Condition
XmlException If incorrect XML is encountered in the input stream.

Remarks

This method skips whitespace, comments, and processing instructions until the reader is positioned on a content node. The method then tests if the current node is an end tag.

See Also

XmlReader Class | XmlReader Members | System.Xml Namespace | CheckEndTag | MoveToContent