15 references to GoogleDefaults
Microsoft.AspNetCore.Authentication.Google (10)
GoogleExtensions.cs (7)
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"/>. 51=> builder.AddGoogle(authenticationScheme, GoogleDefaults.DisplayName, configureOptions); 55/// The default scheme is specified by <see cref="GoogleDefaults.AuthenticationScheme"/>.
GoogleOptions.cs (3)
21AuthorizationEndpoint = GoogleDefaults.AuthorizationEndpoint; 22TokenEndpoint = GoogleDefaults.TokenEndpoint; 23UserInformationEndpoint = GoogleDefaults.UserInformationEndpoint;
Microsoft.AspNetCore.Authentication.Test (3)
GoogleTests.cs (3)
24protected override string DefaultScheme => GoogleDefaults.AuthenticationScheme; 567var expectedIssuer = claimsIssuer ?? GoogleDefaults.AuthenticationScheme; 1230.AddCookie(TestExtensions.CookieAuthenticationScheme, o => o.ForwardChallenge = GoogleDefaults.AuthenticationScheme)
SocialSample (2)
Startup.cs (2)
304if (string.Equals(GoogleDefaults.AuthenticationScheme, currentAuthType) 470if (string.Equals(GoogleDefaults.AuthenticationScheme, currentAuthType))