UpdateFromXmlWithNamespace method

void UpdateFromXmlWithNamespace(
  1. EwsServiceXmlReader reader,
  2. XmlNamespace xmlNamespace,
  3. String xmlElementName
)
Loads from XML to update itself. The reader. The XML namespace. Name of the XML element.

Implementation

void UpdateFromXmlWithNamespace(EwsServiceXmlReader reader,
    XmlNamespace xmlNamespace, String xmlElementName) {
  this._InternalLoadFromXml(reader, xmlNamespace, xmlElementName,
      this.TryReadElementFromXmlToPatch);
}