type
TScChannelError = procedure(Sender: TObject; ChannelInfo: TScSSHChannelInfo; E: Exception) of object;
property OnChannelError: TScChannelError;
Description
The OnChannelError event occurs on errors that arise in an SSH channel thread.
The event handler is called in the thread in which the Exception arose.
Parameters:
• | Sender - the object whose event handler is called; |
• | ChannelInfo - holds the information about the current SSH channel; |
• | E - the object that describes the exception. |