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

[To be supplied.]

Overload List

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

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

Checks that the current content node is a start tag with the given identifier and advances the reader to the next node.

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

Checks that the current node is a start tag and advances the reader to the next node.

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

Checks that the current content node is a start tag with the given name and advances the reader to the next node.

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

See Also

XmlReader Class | XmlReader Members | System.Xml Namespace