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