LoadFromXmlWithPropertySet method

Future<void> LoadFromXmlWithPropertySet(
  1. EwsServiceXmlReader reader,
  2. bool clearPropertyBag,
  3. PropertySet? requestedPropertySet,
  4. bool summaryPropertiesOnly,
)
Loads service object from XML. The reader. if set to [clear property bag]. The property set. if set to [summary props only].

Implementation

Future<void> LoadFromXmlWithPropertySet(
    EwsServiceXmlReader reader,
    bool clearPropertyBag,
    PropertySet? requestedPropertySet,
    bool summaryPropertiesOnly) async {
  await this.PropertyBag.LoadFromXml(
      reader, clearPropertyBag, requestedPropertySet, summaryPropertiesOnly);
}