Remove method

bool Remove(
  1. PropertyDefinitionBase property
)
Removes the specified property from the set. The property to remove.

Implementation

bool Remove(PropertyDefinitionBase property) {
  this._ThrowIfReadonly();
  return this._additionalProperties.remove(property);
}