ListErr Structure/Class

[C]

struct FlowSshC_ListErr
{
  unsigned int m_listOp;
  unsigned int m_errCode;
  wchar_t const* m_errMsg;
};

[C++]

struct ForwardingErr
{
  unsigned int m_listOp;
  unsigned int m_errCode;
  std::wstring m_errMsg;
};

[C#]

public sealed class ForwardingErr
{
  public ListOp ListOp;
  public uint ErrCode;
  public string ErrMsg;
}

Members

  • ListOp: A ListOp enumeration. This value defines the meaning of the ErrCode member.
  • ErrCode: For [ListOp]ListDir and [ListOp]ChannelNotOpen operations this is a SftpErrCode enumeration. Otherwise, the error code has no meaning.
  • ErrMsg: Human readable description of the error.

Remarks

Contains information about a failed [ClientSftpChannel]List request.