ReadStartElementWithNamespace method

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

Implementation

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