Discuss this help topic in SecureBlackbox Forum
Defines possible scopes for LDAP search.
The search is performed relative to the base object (root),
and the scope values are defined correspondingly.
Declaration
[C#/Java]
enum TSBLDAPScope { scBase = 0, scOneLevel = 1, scSubTree = 2 };
[VB.NET]
Enum TSBLDAPScope
scBase = 0
scOneLevel = 1
scSubTree = 2
End Enum
[Pascal]
TSBLDAPScope = (scBase, scOneLevel, scSubTree);
[C++]
typedef uint8_t TSBLDAPScopeRaw;
typedef enum { scBase = 0, scOneLevel = 1, scSubTree = 2 } TSBLDAPScope;
Description
Possible options:
Declared in
.NET:
- Namespace: SBLDAPSCore
- Assembly: SecureBlackbox.LDAP
VCL:Java:
- Package: SecureBlackbox.LDAP.jar
C++:
Discuss this help topic in SecureBlackbox Forum