LoadPropertyValueFromXml method
Future<void>
LoadPropertyValueFromXml(
- EwsServiceXmlReader reader,
- PropertyBag propertyBag
override
Implementation
@override
Future<void> LoadPropertyValueFromXml(
EwsServiceXmlReader reader, PropertyBag propertyBag) async {
reader.EnsureCurrentNodeIsStartElementWithNamespace(
XmlNamespace.Types, XmlElementNames.Recurrence);
Recurrence? recurrence = null;
await reader.Read(
nodeType: XmlNodeType.Element); // This is the pattern element
recurrence = GetRecurrenceFromString(reader.LocalName);
await recurrence.LoadFromXml(reader, reader.LocalName);
await reader.Read(
nodeType: XmlNodeType.Element); // This is the range element
RecurrenceRange range = GetRecurrenceRange(reader.LocalName);
await range.LoadFromXml(reader, reader.LocalName);
range.SetupRecurrence(recurrence);
await reader.ReadEndElementIfNecessary(
XmlNamespace.Types, XmlElementNames.Recurrence);
propertyBag[this] = recurrence;
}