LoadFromXmlWithNamespace method

void LoadFromXmlWithNamespace(
  1. EwsServiceXmlReader reader,
  2. XmlNamespace xmlNamespace,
  3. String? xmlElementName
)
Loads from XML. The reader. The XML namespace. Name of the XML element.

Implementation

void LoadFromXmlWithNamespace(EwsServiceXmlReader reader,
    XmlNamespace xmlNamespace, String? xmlElementName) {
  this._InternalLoadFromXml(
      reader, xmlNamespace, xmlElementName, this.TryReadElementFromXml);
}