idx_get()

XmlReader::idx_get(int32_t) method

When overridden in a derived class, gets the value of the attribute with the specified index.

virtual String System::Xml::XmlReader::idx_get(int32_t i)

Arguments

ParameterTypeDescription
iint32_tThe index of the attribute.

Return Value

The value of the specified attribute.

XmlReader::idx_get(String) method

When overridden in a derived class, gets the value of the attribute with the specified XmlReader::get_Name value.

virtual String System::Xml::XmlReader::idx_get(String name)

Arguments

ParameterTypeDescription
nameStringThe qualified name of the attribute.

Return Value

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

XmlReader::idx_get(String, String) method

When overridden in a derived class, gets the value of the attribute with the specified XmlReader::get_LocalName and XmlReader::get_NamespaceURI values.

virtual String System::Xml::XmlReader::idx_get(String name, String namespaceURI)

Arguments

ParameterTypeDescription
nameStringThe local name of the attribute.
namespaceURIStringThe namespace URI of the attribute.

Return Value

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

See Also