Beispiel #1
0
        internal override sealed void HandleClientError(SvnErrorEventArgs e)
        {
            base.HandleClientError(e);

            if (!e.Cancel)
            {
                OnSvnError(e);
            }
        }
Beispiel #2
0
 internal void RaiseOnSvnError(SvnErrorEventArgs e)
 {
     OnSvnError(e);
 }
Beispiel #3
0
 /// <summary>Called when handling a <see cref="SvnException" /></summary>
 protected virtual void OnSvnError(SvnErrorEventArgs e)
 {
     SvnError?.Invoke(this, e);
 }
Beispiel #4
0
 internal virtual void HandleClientError(SvnErrorEventArgs e)
 {
     CurrentCommandArgs?.RaiseOnSvnError(e);
 }