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

[To be supplied.]

Overload List

Checks that the current content node is a start tag.

[Visual Basic] Overloads Public Sub CheckStartTag()
[C#] public void CheckStartTag();
[C++] public: void CheckStartTag();
[JScript] public function CheckStartTag();

Checks that the current content node is a start tag with a given name.

[Visual Basic] Overloads Public Sub CheckStartTag(String)
[C#] public void CheckStartTag(String);
[C++] public: void CheckStartTag(String*);
[JScript] public function CheckStartTag(String);

Checks that the current content node is a start tag with a given identifier.

[Visual Basic] Overloads Public Sub CheckStartTag(XmlIdent)
[C#] public void CheckStartTag(XmlIdent);
[C++] public: void CheckStartTag(XmlIdent*);
[JScript] public function CheckStartTag(XmlIdent);

Checks that the current content node is a start tag with a given name and namespace URI.

[Visual Basic] Overloads Public Sub CheckStartTag(String, String)
[C#] public void CheckStartTag(String, String);
[C++] public: void CheckStartTag(String*, String*);
[JScript] public function CheckStartTag(String, String);

See Also

XmlReader Class | XmlReader Members | System.Xml Namespace