Value property

Object? Value
Gets or sets the value of the extended property.

Implementation

Object? get Value => this._value;
void 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();
  }
}