System::Xml::XmlTextReader::GetAttribute method
Contents
[
Hide
]XmlTextReader::GetAttribute(int32_t) method
Returns the value of the attribute with the specified index.
String System::Xml::XmlTextReader::GetAttribute(int32_t i) override
Parameter | Type | Description |
---|---|---|
i | int32_t | The index of the attribute. The index is zero-based. (The first attribute has index 0.) |
ReturnValue
The value of the specified attribute.
See Also
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlTextReader::GetAttribute(String, String) method
Returns the value of the attribute with the specified local name and namespace URI.
String System::Xml::XmlTextReader::GetAttribute(String localName, String namespaceURI) override
Parameter | Type | Description |
---|---|---|
localName | String | The local name of the attribute. |
namespaceURI | String | The namespace URI of the attribute. |
ReturnValue
The value of the specified attribute. If the attribute is not found, nullptr is returned. This method does not move the reader.
See Also
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlTextReader::GetAttribute(String) method
Returns the value of the attribute with the specified name.
String System::Xml::XmlTextReader::GetAttribute(String name) override
Parameter | Type | Description |
---|---|---|
name | String | The qualified name of the attribute. |
ReturnValue
The value of the specified attribute. If the attribute is not found, nullptr is returned.
See Also
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.TeX for C++