Renci.SshNet.ForwardedPort.RaiseExceptionEvent C# (CSharp) Méthode

RaiseExceptionEvent() protected méthode

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