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);
            }
        }