IWinSecurityBuilder.UseIntegratedMode(Action<SecurityOptions>, Action<SecurityModuleOptions>) Method
Enables and configures the Security System in Integrated Mode.
Namespace: DevExpress.ExpressApp.Win.ApplicationBuilder
Assembly: DevExpress.ExpressApp.Win.v25.2.dll
NuGet Packages: DevExpress.ExpressApp.Win, DevExpress.ExpressApp.Win.Design
Declaration
IWinAuthenticationBuilder UseIntegratedMode(
Action<SecurityOptions> configureOptions,
Action<SecurityModuleOptions> configureSecurityModule = null
)
Parameters
| Name | Type | Description |
|---|---|---|
| configureOptions | Action<SecurityOptions> | Options that allow you to configure the Security System. |
Optional Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| configureSecurityModule | Action<SecurityModuleOptions> | null | Options that allow you to configure the Security Module. |
Returns
| Type | Description |
|---|---|
| IWinAuthenticationBuilder | Allows you to enable and configure the Security System in your application, and chain further configuration. |
Remarks
The following example demonstrates how to use this method:
File: MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
// ...
builder.Security
.UseIntegratedMode(options => {
options.RoleType = typeof(PermissionPolicyRole);
options.UserType = typeof(ApplicationUser);
options.UserLoginInfoType = typeof(ApplicationUserLoginInfo);
},
moduleOptions => {
// ...
})
.UsePasswordAuthentication();
// ...
}
// ...
}
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UseIntegratedMode(Action<SecurityOptions>, Action<SecurityModuleOptions>) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.