ResumeErrCode Enumeration

[C/C++]

enum FlowSshC_ResumeErrCode
{
  FlowSshC_ResumeErrCode_TextMode      = 1,
  FlowSshC_ResumeErrCode_FileSize      = 2,
  FlowSshC_ResumeErrCode_Conversion    = 3,
  FlowSshC_ResumeErrCode_Content       = 4,
  FlowSshC_ResumeErrCode_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.