Back to FlowSsh Documentation
ListOp Enumeration
[C/C++]
struct FlowSshC_ListOp { enum {
Exception = 0,
ListDir = 100,
ChannelNotOpen = 150 }; };
[C#]
public enum ListOp
{
Exception = 0,
ListDir = 100,
ChannelNotOpen = 150
}
Members
- Exception: The error is a codeless error. [ListErr]ErrMsg might contain a description with more details.
- ListDir: The error is a SFTP error. [ListErr]ErrCode contains a SftpErrCode enumeration.
- ChannelNotOpen: Channel is closed, closing, or opening. [ListErr]ErrCode contains a SftpErrCode enumeration.
Remarks
An enumeration used with the ListErr structure/class to specify its error type. It implicitly defines the meaning of the [ListErr]ErrCode member.