ReadEndElementWithNamespace method

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

Implementation

Future<void> ReadEndElementWithNamespace(
    XmlNamespace xmlNamespace, String? localName) async {
  await this.InternalReadElementWithNamespace(
      xmlNamespace, localName, XmlNodeType.EndElement);
}