Discuss this help topic in SecureBlackbox Forum
Defines possible modes of TElShellSSHSubsystemHandler working
Declaration
[C#]
public enum TSBSSHSubsystemHandlerType { shtSynchronous = 0, shtAsynchronous = 1 };
[VB.NET]
Enum TSBSSHSubsystemHandlerType
shtSynchronous = 0
shtAsynchronous = 1
End Enum
[Pascal]
TSBSSHSubsystemHandlerType = (shtSynchronous, shtAsynchronous);
[C++]
typedef uint8_t TSBSSHSubsystemHandlerTypeRaw;
typedef enum { shtSynchronous = 0, shtAsynchronous = 1 } TSBSSHSubsystemHandlerType;
[PHP]
class TSBSSHSubsystemHandlerType extends TSBBaseEnum {
const shtSynchronous = 0;
const shtAsynchronous = 1;
}
[Java]
public enum TSBSSHSubsystemHandlerType { shtSynchronous, shtAsynchronous }
Possible values
Declared in
.NET:
- Namespace: SBSSHHandlers
- Assembly: SecureBlackbox.SSHCommon
VCL:Java:
- Package: SecureBlackbox.SSHCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum