Back to FlowSsh Documentation
ResumeErrCode Enumeration
[C/C++]
struct FlowSshC_ResumeErrCode { enum {
TextMode = 1,
FileSize = 2,
Conversion = 3,
Content = 4,
FileSizeError = 5 }; };
[C#]
public enum ResumeErrCode
{
TextMode = 1,
FileSize = 2,
Conversion = 3,
Content = 4,
FileSizeError = 5
}
Members
- TextMode: A file opened in text mode cannot be resumed.
- FileSize: Target file is already larger than source file.
- Conversion: A text file for which conversion is required cannot be resumed.
- Content: Target and source files differ.
- FileSizeError: Unable to retrieve file size.
Remarks
An enumeration used with the TransferErr structure/class. It specifies possible resuming related errors.