Castle.Components.DictionaryAdapter.PropertyChangingEventArgsEx
namespace Castle.Components.DictionaryAdapter
{
public class PropertyChangingEventArgsEx : PropertyChangingEventArgs
{
public object OldValue { get; }
public object NewValue { get; }
public bool Cancel { get; set; }
public PropertyChangingEventArgsEx(string propertyName, object oldValue, object newValue);
}
}