ReadEndElementWithNamespace method

void ReadEndElementWithNamespace(
  1. XmlNamespace xmlNamespace,
  2. String? localName
)
Reads the end element. The XML namespace. Name of the local.

Implementation

void ReadEndElementWithNamespace(
    XmlNamespace xmlNamespace, String? localName) {
  this.InternalReadElementWithNamespace(
      xmlNamespace, localName, XmlNodeType.EndElement);
}