ReadToDescendant method

void ReadToDescendant(
  1. XmlNamespace xmlNamespace,
  2. String localName
)
Reads to the next descendant element with the specified local name and namespace. The namespace of the element you with to move to. The local name of the element you wish to move to.

Implementation

void ReadToDescendant(XmlNamespace xmlNamespace, String localName) {
  this._xmlReader.ReadToDescendant(
      localName, EwsUtilities.GetNamespaceUri(xmlNamespace));
}