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

Gets the value of an attribute. This is a shortcut for the GetAttribute method.

[C#] In C#, this member is the indexer for the XmlReader class.

Overload List

Gets the value of the attribute with the specified index.

[Visual Basic] Overloads MustOverride Public Default ReadOnly Property Item(Integer) As String
[C#] public string this[int] {abstract get;}
[C++] public: __property virtual String* get_Item(int) = 0;
[JScript] XmlReader.Item (int)

Gets the value of the attribute with the specified name.

[Visual Basic] Overloads MustOverride Public Default ReadOnly Property Item(String) As String
[C#] public string this[String] {abstract get;}
[C++] public: __property virtual String* get_Item(String*) = 0;
[JScript] XmlReader.Item (String)

Gets the value of the attribute with the specified name and namespace.

[Visual Basic] Overloads MustOverride Public Default ReadOnly Property Item(String, String) As String
[C#] public string this[String, String] {abstract get;}
[C++] public: __property virtual String* get_Item(String*, String*) = 0;
[JScript] XmlReader.Item (String, String)

See Also

XmlReader Class | XmlReader Members | System.NewXml Namespace