/// <summary> /// Raises the <see cref="ValueChanging"/> event with the given parameters. /// </summary> /// <param name="args">The arguments of the event.</param> protected void NotifyContentChanging(MemberNodeChangeEventArgs args) { PrepareChange?.Invoke(this, args); ValueChanging?.Invoke(this, args); }
private void OnValueChanging(object sender, MemberNodeChangeEventArgs e) { ValueChanging?.Invoke(sender, e); }
/// <summary> /// Raises the <see cref="ValueChanged"/> event with the given arguments. /// </summary> /// <param name="args">The arguments of the event.</param> protected void NotifyContentChanged(MemberNodeChangeEventArgs args) { ValueChanged?.Invoke(this, args); FinalizeChange?.Invoke(this, args); }