OtherPropertyDefinition property

PropertyDefinitionBase? get OtherPropertyDefinition
Gets or sets the definition of the property to compare with. Property definitions are available as static members from schema classes (for example, EmailMessageSchema.Subject, AppointmentSchema.Start, ContactSchema.GivenName, etc.) The OtherPropertyDefinition and Value properties are mutually exclusive; setting one resets the other to null.

Implementation

PropertyDefinitionBase? get OtherPropertyDefinition =>
    this._otherPropertyDefinition;
set OtherPropertyDefinition (PropertyDefinitionBase? value)

Implementation

set OtherPropertyDefinition(PropertyDefinitionBase? value) {
  this._otherPropertyDefinition = OtherPropertyDefinition;
  this._value = null;
}