Contains method

bool Contains(
  1. PropertyDefinition propertyDefinition
)
Determines whether the property bag contains a specific property. The property to check against.

Implementation

bool Contains(PropertyDefinition propertyDefinition) {
  return this._properties.containsKey(propertyDefinition);
}