WritePropertyValueToXml method
void
WritePropertyValueToXml(
- EwsServiceXmlWriter writer,
- PropertyBag propertyBag,
- bool isUpdateOperation
override
Implementation
@override
void WritePropertyValueToXml(EwsServiceXmlWriter writer,
PropertyBag propertyBag, bool isUpdateOperation) {
Object? value = propertyBag[this];
if (value != null) {
writer.WriteElementValue(
XmlNamespace.Types, this.XmlElementName, this.Name, value);
}
}