Discuss this help topic in SecureBlackbox Forum

TSBFileEntryFormat

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines possible file entry formats.

Declaration

[C#]
    TSBFileEntryFormat = short;
        const short fefUnknown = 0;
        const short fefUnix = 1;
        const short fefWindows = 2;
        const short fefMLSD = 3;

[VB.NET]
    TSBFileEntryFormat As Short
        Const fefUnknown As Short = 0
        Const fefUnix As Short = 1
        Const fefWindows As Short = 2
        Const fefMLSD As Short = 3

[Pascal]
    TSBFileEntryFormat = (fefUnknown, fefUnix, fefWindows, fefMLSD);

[C++]
    typedef uint8_t TSBFileEntryFormatRaw;
    typedef enum { fefUnknown = 0, fefUnix = 1, fefWindows = 2, fefMLSD = 3 } TSBFileEntryFormat;

[PHP]
    class TSBFileEntryFormat extends TSBBaseEnum {
        const fefUnknown = 0;
        const fefUnix = 1;
        const fefWindows = 2;
        const fefMLSD = 3;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSimpleFTPS
  • Assembly: SecureBlackbox.FTPS
VCL:
  • Unit: SBSimpleFTPS
Java:
  • Package: SecureBlackbox.FTPS.jar
C++:
  • sbsimpleftps.h

Discuss this help topic in SecureBlackbox Forum