Discuss this help topic in SecureBlackbox Forum
Defines possible authentication types for LDAP client.
Declaration
[C#]
public enum TSBLDAPAuthenticationType { autSimple = 0, autSASL = 1 };
[VB.NET]
Enum TSBLDAPAuthenticationType
autSimple = 0
autSASL = 1
End Enum
[Pascal]
TSBLDAPAuthenticationType = (autSimple, autSASL);
[C++]
typedef uint8_t TSBLDAPAuthenticationTypeRaw;
typedef enum { autSimple = 0, autSASL = 1 } TSBLDAPAuthenticationType;
[PHP]
class TSBLDAPAuthenticationType extends TSBBaseEnum {
const autSimple = 0;
const autSASL = 1;
}
[Java]
public enum TSBLDAPAuthenticationType { autSimple, autSASL }
Possible values
Declared in
.NET:
- Namespace: SBLDAPSClient
- Assembly: SecureBlackbox.LDAP
VCL:Java:
- Package: SecureBlackbox.LDAP.jar
C++:
Discuss this help topic in SecureBlackbox Forum