HasFlag method

bool HasFlag(
  1. PropertyDefinitionFlags flag,
  2. ExchangeVersion version
)
Determines whether the specified flag is set. The flag. Requested version.

Implementation

bool HasFlag(PropertyDefinitionFlags flag, ExchangeVersion version) {
  return this._flags.contains(flag);
}