System::Xml::XmlNodeReader::GetAttribute method

XmlNodeReader::GetAttribute(String) method

Returns the value of the attribute with the specified name.

String System::Xml::XmlNodeReader::GetAttribute(String name) override
ParameterTypeDescription
nameStringThe qualified name of the attribute.

ReturnValue

The value of the specified attribute. If the attribute is not found, nullptr is returned.

See Also

XmlNodeReader::GetAttribute(String, String) method

Returns the value of the attribute with the specified local name and namespace URI.

String System::Xml::XmlNodeReader::GetAttribute(String name, String namespaceURI) override
ParameterTypeDescription
nameStringThe local name of the attribute.
namespaceURIStringThe namespace URI of the attribute.

ReturnValue

The value of the specified attribute. If the attribute is not found, nullptr is returned.

See Also

XmlNodeReader::GetAttribute(int32_t) method

Returns the value of the attribute with the specified index.

String System::Xml::XmlNodeReader::GetAttribute(int32_t attributeIndex) override
ParameterTypeDescription
attributeIndexint32_tThe index of the attribute. The index is zero-based. (The first attribute has index 0.)

ReturnValue

The value of the specified attribute.

See Also