Defines SSPI authentication methods used for logging in the user account on the server.
public enum SspiAuthenticationMethod
Public Enum SspiAuthenticationMethod
public enum class SspiAuthenticationMethod
Name | Description |
---|
NTLM | Secure SASL NTLM authentication (also known as Secure Password Authentication - SPA).
In Windows domain environment such as Active Directory, can also be used to authenticate the current Windows user
(in this case, the developer should pass a null reference (Nothing in Visual Basic) as user name and password values).
Might not be supported by particular server implementations. |
Kerberos | Secure SASL GSSAPI authentication (Kerberos).
Used to authenticate the current Windows user in Windows domain environment such as Active Directory.
User name and password values will be ignored and can be left blank or a null reference (Nothing in Visual Basic).
Might not be supported by particular server implementations. |
Negotiate | Negotiate authentication. |
Top