ReadStartElementWithNamespace method

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

Implementation

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