Renci.SshNet.ShellStream.OnRaiseError C# (CSharp) 메소드

OnRaiseError() 개인적인 메소드

private OnRaiseError ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
리턴 void
        private void OnRaiseError(ExceptionEventArgs e)
        {
            var handler = ErrorOccurred;
            if (handler != null)
            {
                handler(this, e);
            }
        }