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#]
public 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;
[PHP]
class TSBLDAPScope extends TSBBaseEnum {
const scBase = 0;
const scOneLevel = 1;
const scSubTree = 2;
}
[Java]
public enum TSBLDAPScope { scBase, scOneLevel, scSubTree }
Possible values
Declared in
.NET:
- Namespace: SBLDAPSCore
- Assembly: SecureBlackbox.LDAP
VCL:Java:
- Package: SecureBlackbox.LDAP.jar
C++:
Discuss this help topic in SecureBlackbox Forum