WindowsAuthenticationOptions.CreateUserAutomatically(Action<IObjectSpace, Object>) Method
Specifies whether a user is created automatically for the Windows account used to run the application.
Namespace: DevExpress.ExpressApp.Security.Authentication
Assembly: DevExpress.ExpressApp.Security.v24.1.dll
NuGet Package: DevExpress.ExpressApp.Security
Declaration
Parameters
Name | Type | Description |
---|---|---|
initializeNewUser | Action<IObjectSpace, Object> | A delegate that initializes a new user. |
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 => {
// ...
})
.UseWindowsAuthentication(options => {
options.CreateUserAutomatically((objectSpace, obj) => {
// ...
});
});
// ...
}
// ...
}
See Also