Renci.SshNet.Shell.RaiseError C# (CSharp) Метод

RaiseError() приватный Метод

private RaiseError ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
Результат void
        private void RaiseError(ExceptionEventArgs e)
        {
            var handler = ErrorOccurred;
            if (handler != null)
            {
                handler(this, e);
            }
        }