ReadElementStringValueWithNamespace method
Implementation
Future<String?> ReadElementStringValueWithNamespace(
XmlNamespace xmlNamespace, String localName) async {
if (!this.IsStartElementWithNamespace(xmlNamespace, localName)) {
await this.ReadStartElementWithNamespace(xmlNamespace, localName);
}
String? value = null;
if (!this.IsEmptyElement) {
value = await this.ReadValue();
}
return value;
}