LoadPropertyValueFromXml method
Implementation
@override
void LoadPropertyValueFromXml(
EwsServiceXmlReader reader, PropertyBag propertyBag) {
String? value = reader.ReadElementValueWithNamespace(
XmlNamespace.Types, this.XmlElementName);
if (!StringUtils.IsNullOrEmpty(value)) {
propertyBag[this] = this.Parse(value);
}
}