NotifyPropertyChanged() private method

private NotifyPropertyChanged ( XamlModelProperty property ) : void
property XamlModelProperty
return void
        void SetValueInternal(XamlPropertyValue newValue)
        {
            var oldValue = _property.PropertyValue;

            _property.PropertyValue = newValue;
            _designItem.NotifyPropertyChanged(this, oldValue, newValue);
        }
 void SetValueInternal(XamlPropertyValue newValue)
 {
     _property.PropertyValue = newValue;
     _designItem.NotifyPropertyChanged(this);
 }