ExcludesBitmask.withPropertyAndBitmask constructor

ExcludesBitmask.withPropertyAndBitmask(
  1. PropertyDefinitionBase propertyDefinition,
  2. int bitmask
)
Initializes a new instance of the The definition of the property that is being compared. Property definitions are available as static members from schema classes (for example, EmailMessageSchema.Subject, AppointmentSchema.Start, ContactSchema.GivenName, etc.) The bitmask to compare with.

Implementation

ExcludesBitmask.withPropertyAndBitmask(
    PropertyDefinitionBase propertyDefinition, int bitmask)
    : super.withProperty(propertyDefinition) {
  this.bitmask = bitmask;
}