SftpErr Structure/Class

[C]

struct FlowSshC_SftpErr
{
  unsigned int m_errCode;
  wchar_t const* m_errMsg;
};

[C++]

struct SftpErr
{
  unsigned int m_errCode;
  std::wstring m_errMsg;
};

[C#]

public sealed class SftpErr
{
  public SftpErrCode ErrCode;
  public string ErrMsg;
}

Members

  • ErrCode: A SftpErrCode enumeration.
  • ErrMsg: Human readable description of the error.

Remarks

Contains information about a Sftp related error.