ExitStatus Structure/Class

[C/C++]

struct FlowSshC_ExitStatus
{
  unsigned int m_code;
};

[C#]

public sealed class ExitStatus
{
  public uint Code;
}

Members

  • Code: Exit code of the remote application.

Remarks

Contains information about the exit status of a remote application.

[C] The exit status is reported by the FlowSshC_ExitHandler.
[C++/.NET] The exit status is reported by the [Client]OnExitStatus handler.