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