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

    MiddleTierAuthenticationBuilderExtensions.AddAzureAD(IMiddleTierAuthenticationBuilder, Action<MiddleTierClientAzureAdAuthenticationOptions>) Method

    Provides access to options to configure Microsoft Entra ID authentication.

    Namespace: DevExpress.ExpressApp.Win.ApplicationBuilder

    Assembly: DevExpress.ExpressApp.Win.v25.1.dll

    NuGet Packages: DevExpress.ExpressApp.Win, DevExpress.ExpressApp.Win.Design

    Declaration

    public static IMiddleTierAuthenticationBuilder AddAzureAD(
        this IMiddleTierAuthenticationBuilder builder,
        Action<MiddleTierClientAzureAdAuthenticationOptions> configureOptions
    )

    Parameters

    Name Type Description
    builder IMiddleTierAuthenticationBuilder

    Allows you to enable and configure the Security System in your application, and chain further configuration.

    configureOptions Action<DevExpress.ExpressApp.Security.MiddleTierClientAzureAdAuthenticationOptions>

    Options that allow you to configure the Microsoft Entra ID authentication.

    Returns

    Type Description
    IMiddleTierAuthenticationBuilder

    Allows you to enable and configure the Security System in your application, and chain further configuration.

    Remarks

    For more information, refer to the following topic: Active Directory and OAuth2 Authentication Providers in WinForms Applications

    See Also