PsrActiveDirectoryAuthenticationTypes Enumeration |
Describes our set of Authentication Types for the Active Directory Connection.
Namespace:
PsrApi.Data.Enums
Assembly:
PsrApi (in PsrApi.dll) Version: 9.2.2.32703 (27.03.2025)+b9af25405a8dc67f2b73227b442cec4f08fd2d8a
Syntax[FlagsAttribute]
public enum PsrActiveDirectoryAuthenticationTypes
Members
| Member name | Value | Description |
---|
| None | 0 |
Equates to zero, which means to use basic authentication (simple bind) in the LDAP provider.
|
| ReadonlyServer | 4 |
For a WinNT provider, ADSI tries to connect to a domain controller. For Active Directory Domain Services, this flag indicates that a writable server is not required for a serverless binding.
|
| Sealing | 128 |
Encrypts data using Kerberos. The Secure-flag must also be set to use sealing.
|
| Secure | 1 |
Requests secure authentication. When this flag is set, the WinNT provider uses NTLM to authenticate the client. Active Directory Domain Services uses Kerberos, and possibly NTLM, to authenticate the client. When the user name and password are a null reference (Nothing in Visual Basic), ADSI binds to the object using the security context of the calling thread, which is either the security context of the user account under which the application is running or of the client user account that the calling thread is impersonating.
|
| SecureSocketsLayer | 2 |
Attaches a cryptographic signature to the message that both identifies the sender and ensures that the message has not been modified in transit. Active Directory Domain Services requires the Certificate Server be installed to support Secure Sockets Layer (SSL) encryption.
|
| Signing | 64 |
Verifies data integrity to ensure that the data received is the same as the data sent. The Secure-flag must also be set to use signing.
|
See Also