Renci.SshNet.Sftp.SubsystemSession.RaiseError C# (CSharp) Method

RaiseError() protected method

Raises the error.
protected RaiseError ( Exception error ) : void
error System.Exception The error.
return void
        protected void RaiseError(Exception error)
        {
            this._exception = error;

            this._errorOccuredWaitHandle.Set();

            if (this.ErrorOccurred != null)
            {
                this.ErrorOccurred(this, new ExceptionEventArgs(error));
            }
        }