Back to product page
- Introduction
- Overview
- License Agrement
- Getting Started
- Objects
- Enumerations
- wodSSH
- Methods
- Properties
- AllocatePty
- Authentication
- Blocking
- ClientName
- Columns
- Command
- Compression
- DataOut
- DataReady
- Encoding
- Encryption
- EncryptionList
- ErrorText
- ExitSignal
- ExitStatus
- FIPS
- ForwardHost
- ForwardPort
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeyForward
- KeySignatureList
- LastError
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- Rows
- ShowStdErrorMessages
- State
- StateText
- StripANSI
- StripNull
- Subsystem
- TerminalSpeed
- TerminalType
- Timeout
- UseIPv6
- Version
- Events
- IwodSSHNotify
- How to get support?
- Technical information
- Fast notifications interface
- Error list
ShowStdErrorMessages property
Determines if server's STDERR messages are received.
Type
A Boolean value. Determines if STDERR messages are shown.Syntax
- Basic
object.ShowStdErrorMessages [= value]
The ShowStdErrorMessages(object,value) syntax has these parts:
The ShowStdErrorMessages(object,value) syntax has these parts:
object | An expression evaluating to an object of type wodSSH. |
value | A Boolean value. |
Remarks
SSH servers have a common way of sending the results of your commands through Standard Output (STDOUT). These results are redirected to wodSSH and fired through events so that applications can consume them. However, servers also provide a way of sending additional (error messages) through Standard Error (STDERR) which is, by default, ignored by wodSSH. If you also want to receive such messages, you should set this property to True.For example, when you login to a remote server, most of them send your basic environment information through STDERR. If you set this property to true before connecting, you will receive this information.