C:\Users\clu\.nuget\packages\microsoft.identity.web\2.9.0\lib\netcoreapp3.1\Microsoft.Identity.Web.dll
[assembly: AssemblyFileVersion("2.9.0.0")]
[assembly: AssemblyInformationalVersion("2.9.0+87400de3c669d962b2035d36ab6d2415cd4123f4")]
[assembly: AssemblyProduct("Microsoft Identity Web")]
[assembly: AssemblyTitle("Microsoft.Identity.Web")]
[assembly: AssemblyMetadata("RepositoryUrl", "https://github.com/AzureAD/microsoft-identity-web")]
[assembly: SecurityPermission(8, SkipVerification = true)]
/// <summary>
/// Add authentication to a web app with Microsoft identity platform.
/// This method expects the configuration file will have a section, named "AzureAd" as default,
/// with the necessary settings to initialize authentication options.
/// </summary>
/// <param name="builder">The <see cref="AuthenticationBuilder"/> to which to add this configuration.</param>
/// <param name="configuration">The configuration instance.</param>
/// <param name="configSectionName">The configuration section with the necessary settings to initialize authentication options.</param>
/// <param name="openIdConnectScheme">The OpenID Connect scheme name to be used. By default it uses "OpenIdConnect".</param>
/// <param name="cookieScheme">The cookie-based scheme name to be used. By default it uses "Cookies".</param>
/// <param name="subscribeToOpenIdConnectMiddlewareDiagnosticsEvents">Set to true if you want to debug, or just understand the OpenID Connect events.</param>
/// <param name="displayName">A display name for the authentication handler.</param>
/// <returns>The <see cref="MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration"/> builder for chaining.</returns>
public static MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration AddMicrosoftIdentityWebApp(
this AuthenticationBuilder builder,
IConfiguration configuration,
string configSectionName = Constants.AzureAd,
string openIdConnectScheme = OpenIdConnectDefaults.AuthenticationScheme,
string? cookieScheme = CookieAuthenticationDefaults.AuthenticationScheme,
bool subscribeToOpenIdConnectMiddlewareDiagnosticsEvents = false,
string? displayName = null)
{
if (configuration == null)
{
throw new ArgumentException(nameof(configuration));
}
if (string.IsNullOrEmpty(configSectionName))
{
throw new ArgumentException(nameof(configSectionName));
}
IConfigurationSection configurationSection = configuration.GetSection(configSectionName);
return builder.AddMicrosoftIdentityWebApp(
configurationSection,
openIdConnectScheme,
cookieScheme,
subscribeToOpenIdConnectMiddlewareDiagnosticsEvents,
displayName);
}
/// <summary>
/// Add authentication with Microsoft identity platform.
/// This method expects the configuration file will have a section, named "AzureAd" as default, with the necessary settings to initialize authentication options.
/// </summary>
/// <param name="builder">The <see cref="AuthenticationBuilder"/> to which to add this configuration.</param>
/// <param name="configurationSection">The configuration section from which to get the options.</param>
/// <param name="openIdConnectScheme">The OpenID Connect scheme name to be used. By default it uses "OpenIdConnect".</param>
/// <param name="cookieScheme">The cookie-based scheme name to be used. By default it uses "Cookies".</param>
/// <param name="subscribeToOpenIdConnectMiddlewareDiagnosticsEvents">Set to true if you want to debug, or just understand the OpenID Connect events.</param>
/// <param name="displayName">A display name for the authentication handler.</param>
/// <returns>The authentication builder for chaining.</returns>
public static MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration AddMicrosoftIdentityWebApp(
this AuthenticationBuilder builder,
IConfigurationSection configurationSection,
string openIdConnectScheme = OpenIdConnectDefaults.AuthenticationScheme,
string? cookieScheme = CookieAuthenticationDefaults.AuthenticationScheme,
bool subscribeToOpenIdConnectMiddlewareDiagnosticsEvents = false,
string? displayName = null)
{
_ = Throws.IfNull(builder);
_ = Throws.IfNull(configurationSection);
return builder.AddMicrosoftIdentityWebAppWithConfiguration(
options => configurationSection.Bind(options),
null,
openIdConnectScheme,
cookieScheme,
subscribeToOpenIdConnectMiddlewareDiagnosticsEvents,
displayName,
configurationSection);
}
/// <summary>
/// Add authentication with Microsoft identity platform.
/// </summary>
/// <param name="builder">The <see cref="AuthenticationBuilder"/> to which to add this configuration.</param>
/// <param name="configureMicrosoftIdentityOptions">The action to configure <see cref="MicrosoftIdentityOptions"/>.</param>
/// <param name="configureCookieAuthenticationOptions">The action to configure <see cref="CookieAuthenticationOptions"/>.</param>
/// <param name="openIdConnectScheme">The OpenID Connect scheme name to be used. By default it uses "OpenIdConnect".</param>
/// <param name="cookieScheme">The cookie-based scheme name to be used. By default it uses "Cookies".</param>
/// <param name="subscribeToOpenIdConnectMiddlewareDiagnosticsEvents">Set to true if you want to debug, or just understand the OpenID Connect events.</param>
/// <param name="displayName">A display name for the authentication handler.</param>
/// <returns>The authentication builder for chaining.</returns>
public static MicrosoftIdentityWebAppAuthenticationBuilder AddMicrosoftIdentityWebApp(
this AuthenticationBuilder builder,
Action<MicrosoftIdentityOptions> configureMicrosoftIdentityOptions,
Action<CookieAuthenticationOptions>? configureCookieAuthenticationOptions = null,
string openIdConnectScheme = OpenIdConnectDefaults.AuthenticationScheme,
string? cookieScheme = CookieAuthenticationDefaults.AuthenticationScheme,
bool subscribeToOpenIdConnectMiddlewareDiagnosticsEvents = false,
string? displayName = null)
{
_ = Throws.IfNull(builder);
return builder.AddMicrosoftWebAppWithoutConfiguration(
configureMicrosoftIdentityOptions,
configureCookieAuthenticationOptions,
openIdConnectScheme,
cookieScheme,
subscribeToOpenIdConnectMiddlewareDiagnosticsEvents,
displayName);
}
四个参数需要注意
this AuthenticationBuilder builder,
Action<MicrosoftIdentityOptions> configureMicrosoftIdentityOptions,
Action<CookieAuthenticationOptions>? configureCookieAuthenticationOptions = null,
string openIdConnectScheme = OpenIdConnectDefaults.AuthenticationScheme,
string? cookieScheme = CookieAuthenticationDefaults.AuthenticationScheme,
标签:string,default,builder,AddMicrosoftIdentityWebApp,authentication,configuration,n From: https://www.cnblogs.com/chucklu/p/17568467.html