Value property

Object? Value
Gets or sets the value to compare with. The Value and OtherPropertyDefinition properties are mutually exclusive; setting one resets the other to null.

Implementation

Object? get Value => this._value;
void Value=(Object? value)

Implementation

set Value(Object? value) {
  this._value = value;
  this._otherPropertyDefinition = null;
}