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

            OnCommitted(e);
        }