Discuss this help topic in SecureBlackbox Forum

TSBSftpRealpathControl

Declared in     See also     


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


This topic is under development…

Declaration

[C#]
    public enum TSBSftpRealpathControl { rcNoCheck = 0, rcStatIf = 1, rcStatAlways = 2 };

[VB.NET]
    Enum TSBSftpRealpathControl
        rcNoCheck = 0
        rcStatIf = 1
        rcStatAlways = 2
    End Enum

[Pascal]
    TSBSftpRealpathControl = (rcNoCheck, rcStatIf, rcStatAlways);

[C++]
    typedef uint8_t TSBSftpRealpathControlRaw;
    typedef enum { rcNoCheck = 0, rcStatIf = 1, rcStatAlways = 2 } TSBSftpRealpathControl;

[PHP]
    class TSBSftpRealpathControl extends TSBBaseEnum {
        const rcNoCheck = 0;
        const rcStatIf = 1;
        const rcStatAlways = 2;
    }

[Java]
    public enum TSBSftpRealpathControl { rcNoCheck, rcStatIf, rcStatAlways }

Possible values

Declared in

.NET:
  • Namespace: SBSftpCommon
  • Assembly: SecureBlackbox.SFTPCommon
VCL:
  • Unit: SBSftpCommon
Java:
  • Package: SecureBlackbox.SFTPCommon.jar
C++:
  • sbsftpcommon.h

See also:     KeyFormat    

Discuss this help topic in SecureBlackbox Forum