Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Client.SSH
- Methods
- Properties
- AllocatePty
- Authentication
- Blocking
- Columns
- Command
- Compression
- DataOut
- DataReady
- Encryption
- EncryptionList
- ExitSignal
- ExitStatus
- FingerPrintType
- FIPS
- ForwardHost
- ForwardPort
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeyFowarding
- Login
- Password
- Port
- PrivateKey
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- Rows
- ShowStdErrorMessages
- State
- StripANSI
- Subsystem
- TerminalType
- Timeout
- Version
- Events
- How to get support?
ExitSignal property
Holds exit signal from SSH connection.
Type
String. Signal returned from remote server.Syntax
- C#
- VB.NET
String ExitSignal {get; set; };
Property ExitSignal As String
Remarks
ExitSignal property holds result code sent by SSH server when remote command was terminated violently due to a signal. Empty property usually means that command terminated successfully. ExitSignal will hold data in the format:SIGNAL C EXPLANATION
- SIGNAL can be one of these: ABRT ALRM FPE HUP ILL INT KILL PIPE QUIT SEGV TERM USR1 USR2 (additional signal names may be send in the format sig-name@xyz
- C will hold 1 if core was dumped (0 otherwise)
- EXPLANATION will hold text description of the error message, may consist of multiple lines. You can choose to display this error to the user.