Example #1
0
 internal virtual void HandleClientCommitted(SvnCommittedEventArgs e)
 {
     if (CurrentCommandArgs is SvnClientArgsWithCommit commitArgs)
     {
         commitArgs.RaiseOnCommitted(e);
     }
 }
 internal void RaiseOnCommitted(SvnCommittedEventArgs e)
 {
     OnCommitted(e);
 }
 protected virtual void OnCommitted(SvnCommittedEventArgs e)
 {
     Committed?.Invoke(this, e);
 }
Example #4
0
        internal override sealed void HandleClientCommitted(SvnCommittedEventArgs e)
        {
            base.HandleClientCommitted(e);

            OnCommitted(e);
        }