Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
When overridden in a derived class, gets the value of the attribute with the specified LocalName and NamespaceURI.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Overridable Function GetAttribute ( _
localName As String, _
namespaceURI As String _
) As String
public virtual string GetAttribute(
string localName,
string namespaceURI
)
public:
virtual String^ GetAttribute(
String^ localName,
String^ namespaceURI
)
abstract GetAttribute :
localName:string *
namespaceURI:string -> string
override GetAttribute :
localName:string *
namespaceURI:string -> string
public function GetAttribute(
localName : String,
namespaceURI : String
) : String
Parameters
- localName
Type: System. . :: . .String
The local name of the attribute.
- namespaceURI
Type: System. . :: . .String
The namespace URI of the attribute.
Return Value
Type: System. . :: . .String
The value of the specified attribute. If the attribute is not found or the value is String.Empty, nullNothingnullptrunita null reference (Nothing in Visual Basic) is returned. This method does not move the reader.
Remarks
The following XML contains an attribute in a specific namespace:
<test xmlns:dt="urn:datatypes" dt:type="int"/>
You can lookup the dt:type attribute using one argument (prefix and local name) or two arguments (local name and namespace URI):
String dt = reader.GetAttribute("dt:type");
String dt2 = reader.GetAttribute("type","urn:datatypes");
To lookup the xmlns:dt attribute, use one of the following arguments:
String dt3 = reader.GetAttribute("xmlns:dt");
String dt4 = reader.GetAttribute("dt",http://www.w3.org/2000/xmlns/);
You can also get this information using the Prefix property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.