Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

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.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Security

Declaration

public void CreateUserAutomatically(
    Action<IObjectSpace, object> initializeNewUser
)

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