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

[To be supplied.]

Overload List

Tests if the current content node is a start tag.

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

Tests if the current content node is a start tag with a given name and namespace URI.

[Visual Basic] Overloads Public Function IsStartTag(String, String) As Boolean
[C#] public bool IsStartTag(String, String);
[C++] public: bool IsStartTag(String*, String*);
[JScript] public function IsStartTag(String, String) : Boolean;

Tests if the current content node is a start tag with a given name.

[Visual Basic] Overloads Public Function IsStartTag(String) As Boolean
[C#] public bool IsStartTag(String);
[C++] public: bool IsStartTag(String*);
[JScript] public function IsStartTag(String) : Boolean;

Tests if the current content node is a start tag with a given identifier.

[Visual Basic] Overloads Public Function IsStartTag(XmlIdent) As Boolean
[C#] public bool IsStartTag(XmlIdent);
[C++] public: bool IsStartTag(XmlIdent*);
[JScript] public function IsStartTag(XmlIdent) : Boolean;

See Also

XmlReader Class | XmlReader Members | System.Xml Namespace