45 references to AuthenticationOptions
Microsoft.AspNetCore.Authentication (7)
AuthenticationBuilder.cs (3)
34
Services.Configure<
AuthenticationOptions
>(o =>
115
private readonly
AuthenticationOptions
_authOptions;
117
public EnsureSignInScheme(IOptions<
AuthenticationOptions
> authOptions)
AuthenticationServiceCollectionExtensions.cs (3)
46
/// Registers services required by authentication services and configures <see cref="
AuthenticationOptions
"/>.
49
/// <param name="configureOptions">A delegate to configure <see cref="
AuthenticationOptions
"/>.</param>
51
public static AuthenticationBuilder AddAuthentication(this IServiceCollection services, Action<
AuthenticationOptions
> configureOptions)
RemoteAuthenticationOptions.cs (1)
110
/// When omitted, <see cref="
AuthenticationOptions
.DefaultSignInScheme"/> is used as a fallback value.
Microsoft.AspNetCore.Authentication.Abstractions (18)
AuthenticationHttpContextExtensions.cs (10)
18
/// The default authentication scheme can be configured using <see cref="
AuthenticationOptions
.DefaultAuthenticateScheme"/>.
47
/// The default challenge scheme can be configured using <see cref="
AuthenticationOptions
.DefaultChallengeScheme"/>.
57
/// The default challenge scheme can be configured using <see cref="
AuthenticationOptions
.DefaultChallengeScheme"/>.
89
/// The default forbid scheme can be configured using <see cref="
AuthenticationOptions
.DefaultForbidScheme"/>.
99
/// The default forbid scheme can be configured using <see cref="
AuthenticationOptions
.DefaultForbidScheme"/>.
130
/// The default scheme for signing in can be configured using <see cref="
AuthenticationOptions
.DefaultSignInScheme"/>.
140
/// The default scheme for signing in can be configured using <see cref="
AuthenticationOptions
.DefaultSignInScheme"/>.
162
/// The default scheme for signing out can be configured using <see cref="
AuthenticationOptions
.DefaultSignOutScheme"/>.
170
/// The default scheme for signing out can be configured using <see cref="
AuthenticationOptions
.DefaultSignOutScheme"/>.
207
/// The default authentication scheme can be configured using <see cref="
AuthenticationOptions
.DefaultAuthenticateScheme"/>.
IAuthenticationSchemeProvider.cs (8)
28
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultAuthenticateScheme"/>.
29
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
36
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultChallengeScheme"/>.
37
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
44
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultForbidScheme"/>.
52
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultSignInScheme"/>.
53
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
60
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultSignOutScheme"/>.
Microsoft.AspNetCore.Authentication.Core (20)
AuthenticationCoreServiceCollectionExtensions.cs (2)
36
/// <param name="configureOptions">Used to configure the <see cref="
AuthenticationOptions
"/>.</param>
38
public static IServiceCollection AddAuthenticationCore(this IServiceCollection services, Action<
AuthenticationOptions
> configureOptions)
AuthenticationSchemeProvider.cs (13)
19
/// <param name="options">The <see cref="
AuthenticationOptions
"/> options.</param>
20
public AuthenticationSchemeProvider(IOptions<
AuthenticationOptions
> options)
29
/// <param name="options">The <see cref="
AuthenticationOptions
"/> options.</param>
31
protected AuthenticationSchemeProvider(IOptions<
AuthenticationOptions
> options, IDictionary<string, AuthenticationScheme> schemes)
45
private readonly
AuthenticationOptions
_options;
64
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultAuthenticateScheme"/>.
65
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
75
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultChallengeScheme"/>.
76
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
86
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultForbidScheme"/>.
97
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultSignInScheme"/>.
98
/// Otherwise, this will fallback to <see cref="
AuthenticationOptions
.DefaultScheme"/>.
108
/// This is typically specified via <see cref="
AuthenticationOptions
.DefaultSignOutScheme"/>.
AuthenticationService.cs (4)
24
/// <param name="options">The <see cref="
AuthenticationOptions
"/>.</param>
29
IOptions<
AuthenticationOptions
> options)
53
/// The <see cref="
AuthenticationOptions
"/>.
55
public
AuthenticationOptions
Options { get; }
AuthenticationServiceImpl.cs (1)
15
IOptions<
AuthenticationOptions
> options,