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

Gets the value of an attribute.

Overload List

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

[Visual Basic] Overloads MustOverride Public Function GetAttribute(String, String) As String
[C#] public abstract string GetAttribute(String, String);
[C++] public: virtual String* GetAttribute(String*, String*) = 0;
[JScript] public abstract function GetAttribute(String, String) : String;

Gets the value of the attribute with the specified index.

[Visual Basic] Overloads MustOverride Public Function GetAttribute(Integer) As String
[C#] public abstract string GetAttribute(int);
[C++] public: virtual String* GetAttribute(int) = 0;
[JScript] public abstract function GetAttribute(int) : String;

Gets the value of the attribute with the specified name.

[Visual Basic] Overloads MustOverride Public Function GetAttribute(String) As String
[C#] public abstract string GetAttribute(String);
[C++] public: virtual String* GetAttribute(String*) = 0;
[JScript] public abstract function GetAttribute(String) : String;

See Also

XmlReader Class | XmlReader Members | System.NewXml Namespace