Validate method

void Validate()
Validate property bag instance.

Implementation

void Validate() {
  for (PropertyDefinition propertyDefinition in this._addedProperties) {
    this.ValidatePropertyValue(propertyDefinition);
  }

  for (PropertyDefinition propertyDefinition in this._modifiedProperties) {
    this.ValidatePropertyValue(propertyDefinition);
  }
}