TextHint Enumeration

[C/C++]

enum FlowSshC_TextHint
{
  FlowSshC_TextHint_KnownText     = 0,
  FlowSshC_TextHint_GuessedText   = 1,
  FlowSshC_TextHint_KnownBinary   = 2,
  FlowSshC_TextHint_GuessedBinary = 3
};

[C#]

public enum TextHint
{
  KnownText     = 0,
  GuessedText   = 1,
  KnownBinary   = 2,
  GuessedBinary = 3
}

Members

  • KnownText: The server knows the file is a text file.
  • GuessedText: The server believes the file is probably a text file.
  • KnownBinary: The server knows the file has binary content.
  • GuessedBinary: The server believes the file probably has binary content.

Remarks

This enumeration indicates what the server knows about the content of a file. It is used with the FileAttrs structure/class.