Contains method

bool Contains(
  1. PropertyDefinitionBase property
)
The property.

Implementation

/// </summary>
/// <param name="property">The property.</param>
/// <returns>
///     <c>true</c> if this property set contains the specified propert]; otherwise, <c>false</c>.
/// </returns>
bool Contains(PropertyDefinitionBase property) {
  return this._additionalProperties.contains(property);
}