Renci.SshNet.Shell.RaiseError C# (CSharp) Méthode

RaiseError() private méthode

private RaiseError ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
Résultat void
        private void RaiseError(ExceptionEventArgs e)
        {
            var handler = ErrorOccurred;
            if (handler != null)
            {
                handler(this, e);
            }
        }