Value property
Object?
get
Value
Implementation
Object? get Value => this._value;
set
Value
(Object? value)
Implementation
set Value(Object? value) {
EwsUtilities.ValidateParam(value, "value");
final mapiValue =
MapiTypeConverter.ChangeType(this.PropertyDefinition!.MapiType, value);
if (this.CanSetFieldValue(this._value, mapiValue)) {
this._value = mapiValue;
this.Changed();
}
}