EnsureCurrentNodeIsEndElement method
Implementation
void EnsureCurrentNodeIsEndElement(
XmlNamespace xmlNamespace, String localName) {
if (!this.IsEndElementWithNamespace(xmlNamespace, localName)) {
if (!(this.IsStartElementWithNamespace(xmlNamespace, localName) &&
this.IsEmptyElement)) {
throw new ServiceXmlDeserializationException("""string.Format(
Strings.ElementNotFound,
localName,
xmlNamespace)""");
}
}
}