AzureADAuthenticationBuilderExtensions.AddAzureADBearer Method

Definition

Overloads

AddAzureADBearer(AuthenticationBuilder, Action<AzureADOptions>)
Obsolete.

Adds JWT Bearer authentication to your app for Azure Active Directory Applications.

AddAzureADBearer(AuthenticationBuilder, String, String, Action<AzureADOptions>)
Obsolete.

Adds JWT Bearer authentication to your app for Azure Active Directory Applications.

AddAzureADBearer(AuthenticationBuilder, Action<AzureADOptions>)

Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs

Caution

This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.

Adds JWT Bearer authentication to your app for Azure Active Directory Applications.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Authentication::AuthenticationBuilder ^ AddAzureADBearer(Microsoft::AspNetCore::Authentication::AuthenticationBuilder ^ builder, Action<Microsoft::AspNetCore::Authentication::AzureAD::UI::AzureADOptions ^> ^ configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddAzureADBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> configureOptions);
[System.Obsolete("This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.")]
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddAzureADBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> configureOptions);
static member AddAzureADBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
[<System.Obsolete("This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.")>]
static member AddAzureADBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddAzureADBearer (builder As AuthenticationBuilder, configureOptions As Action(Of AzureADOptions)) As AuthenticationBuilder

Parameters

configureOptions
Action<AzureADOptions>

The Action<T> to configure the AzureADOptions.

Returns

The AuthenticationBuilder.

Attributes

Applies to

AddAzureADBearer(AuthenticationBuilder, String, String, Action<AzureADOptions>)

Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs
Source:
AzureADAuthenticationBuilderExtensions.cs

Caution

This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.

Adds JWT Bearer authentication to your app for Azure Active Directory Applications.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Authentication::AuthenticationBuilder ^ AddAzureADBearer(Microsoft::AspNetCore::Authentication::AuthenticationBuilder ^ builder, System::String ^ scheme, System::String ^ jwtBearerScheme, Action<Microsoft::AspNetCore::Authentication::AzureAD::UI::AzureADOptions ^> ^ configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddAzureADBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string scheme, string jwtBearerScheme, Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> configureOptions);
[System.Obsolete("This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.")]
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddAzureADBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string scheme, string jwtBearerScheme, Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> configureOptions);
static member AddAzureADBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
[<System.Obsolete("This is obsolete and will be removed in a future version. Use AddMicrosoftWebApiAuthentication from Microsoft.Identity.Web instead. See https://aka.ms/ms-identity-web.")>]
static member AddAzureADBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.AzureAD.UI.AzureADOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddAzureADBearer (builder As AuthenticationBuilder, scheme As String, jwtBearerScheme As String, configureOptions As Action(Of AzureADOptions)) As AuthenticationBuilder

Parameters

scheme
String

The identifier for the virtual scheme.

jwtBearerScheme
String

The identifier for the underlying JWT Bearer scheme.

configureOptions
Action<AzureADOptions>

The Action<T> to configure the AzureADOptions.

Returns

The AuthenticationBuilder.

Attributes

Applies to