Renci.SshNet.ForwardedPort.RaiseExceptionEvent C# (CSharp) 메소드

RaiseExceptionEvent() 보호된 메소드

Raises Renci.SshNet.ForwardedPort.Exception event.
protected RaiseExceptionEvent ( Exception exception ) : void
exception System.Exception The exception.
리턴 void
        protected void RaiseExceptionEvent(Exception exception)
        {
            var handlers = Exception;
            if (handlers != null)
            {
                handlers(this, new ExceptionEventArgs(exception));
            }
        }