corelibraries-devexpress-dot-dataaccess-dot-connectionparameters-560c5d90.md
Lists values that specify the authentication mode of the Microsoft SQL Server.
Namespace : DevExpress.DataAccess.ConnectionParameters
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
[ResourceFinder(typeof(ResFinder))]
public enum MsSqlAuthorizationType
<ResourceFinder(GetType(ResFinder))>
Public Enum MsSqlAuthorizationType
| Name | Description |
|---|---|
Windows |
Authenticate with a Windows user account.
|
| SqlServer |
Authenticate with a SQL server account.
|
| ActiveDirectoryInteractive |
Authenticate with a Microsoft Entra ID using interactive authentication.
|
| ActiveDirectoryPassword |
Authenticate with a Microsoft Entra ID username and password.
|
| ActiveDirectoryIntegrated |
Authenticate with a Microsoft Entra ID using Integrated Windows Authentication (IWA).
|
| ActiveDirectoryDefault |
Authenticate with a Microsoft Entra ID using password-less and non-interactive mechanisms such as managed identities, Visual Studio Code, Visual Studio, Azure CLI, and more.
|
The following properties accept/return MsSqlAuthorizationType values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | MsSqlConnectionParameters.AuthorizationType |
| WPF Controls | ConnectionPropertiesPage.AuthTypeMsSql |
Values listed by this enumeration are used to set the MsSqlConnectionParameters.AuthorizationType property.
See Also