IsEndElementWithNamespace method
Implementation
bool IsEndElementWithNamespace(XmlNamespace xmlNamespace, String? localName) {
return (this.LocalName == localName) &&
(this.NodeType == XmlNodeType.EndElement) &&
((this.NamespacePrefix ==
EwsUtilities.GetNamespacePrefix(xmlNamespace)) ||
(this.NamespaceUri == EwsUtilities.GetNamespaceUri(xmlNamespace)));
}