Renci.SshNet.BaseClient.Session_ErrorOccured C# (CSharp) Method

Session_ErrorOccured() private method

private Session_ErrorOccured ( object sender, ExceptionEventArgs e ) : void
sender object
e ExceptionEventArgs
return void
        private void Session_ErrorOccured(object sender, ExceptionEventArgs e)
        {
            var handler = ErrorOccurred;
            if (handler != null)
            {
                handler(this, e);
            }
        }