11 references to AuthenticationScheme
Microsoft.AspNetCore.Authentication.Google (6)
GoogleExtensions.cs (6)
16
/// The default scheme is specified by <see cref="GoogleDefaults.
AuthenticationScheme
"/>.
24
=> builder.AddGoogle(GoogleDefaults.
AuthenticationScheme
, _ => { });
28
/// The default scheme is specified by <see cref="GoogleDefaults.
AuthenticationScheme
"/>.
37
=> builder.AddGoogle(GoogleDefaults.
AuthenticationScheme
, configureOptions);
41
/// The default scheme is specified by <see cref="GoogleDefaults.
AuthenticationScheme
"/>.
55
/// The default scheme is specified by <see cref="GoogleDefaults.
AuthenticationScheme
"/>.
Microsoft.AspNetCore.Authentication.Test (3)
GoogleTests.cs (3)
24
protected override string DefaultScheme => GoogleDefaults.
AuthenticationScheme
;
567
var expectedIssuer = claimsIssuer ?? GoogleDefaults.
AuthenticationScheme
;
1230
.AddCookie(TestExtensions.CookieAuthenticationScheme, o => o.ForwardChallenge = GoogleDefaults.
AuthenticationScheme
)
SocialSample (2)
Startup.cs (2)
304
if (string.Equals(GoogleDefaults.
AuthenticationScheme
, currentAuthType)
470
if (string.Equals(GoogleDefaults.
AuthenticationScheme
, currentAuthType))