Back to product page

ShowStdErrorMessages property


Determines if server's STDERR messages are received.

Type

Boolean.

Syntax

  • C#
  • VB.NET
Boolean ShowStdErrorMessages {get; set; };

Property ShowStdErrorMessages As Boolean

Remarks

SSH servers have common way of sending results of your commands through Standard Output (STDOUT), which is redirected to wodSSH.NET and fired through events so applications can consume them. However, servers also provide way of sending additional (error messages) through Standard Error (STDERR) which is, by default, ignored by wodSSH.NET. If you want to receive such messages also, you should set this propery to true.

For example, when you login to 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 also.

Platforms

Windows