ReadAttributeValueWithNamespace method
Implementation
String? ReadAttributeValueWithNamespace(
XmlNamespace xmlNamespace, String attributeName) {
if (xmlNamespace == XmlNamespace.NotSpecified) {
return this.ReadAttributeValue(attributeName);
} else {
return this._xmlReader.GetAttributeWithNamespace(
attributeName, EwsUtilities.GetNamespaceUri(xmlNamespace));
}
}