Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPOP3Authorizations = int;
const int popUSER = 1;
const int popAPOP = 2;
const int popSASL = 4;
[VB.NET]
TSBPOP3Authorizations As Integer
Const popUSER As Integer = 1
Const popAPOP As Integer = 2
Const popSASL As Integer = 4
[Pascal]
under development
[C++]
typedef uint8_t TSBPOP3AuthorizationRaw;
typedef enum { popUSER = 0, popAPOP = 1, popSASL = 2 } TSBPOP3Authorization;
typedef uint32_t TSBPOP3AuthorizationsRaw;
typedef enum { f_popUSER = 1, f_popAPOP = 2, f_popSASL = 4 } TSBPOP3Authorizations;
[PHP]
class TSBPOP3Authorizations extends TSBBaseEnum {
const popUSER = 1;
const popAPOP = 2;
const popSASL = 4;
}
Possible values
Declared in
.NET:
- Namespace: SBPOP3Client
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum