17 references to FacebookDefaults
Microsoft.AspNetCore.Authentication.Facebook (10)
FacebookExtensions.cs (7)
16
/// The default scheme is specified by <see cref="
FacebookDefaults
.AuthenticationScheme"/>.
24
=> builder.AddFacebook(
FacebookDefaults
.AuthenticationScheme, _ => { });
28
/// The default scheme is specified by <see cref="
FacebookDefaults
.AuthenticationScheme"/>.
37
=> builder.AddFacebook(
FacebookDefaults
.AuthenticationScheme, configureOptions);
41
/// The default scheme is specified by <see cref="
FacebookDefaults
.AuthenticationScheme"/>.
51
=> builder.AddFacebook(authenticationScheme,
FacebookDefaults
.DisplayName, configureOptions);
55
/// The default scheme is specified by <see cref="
FacebookDefaults
.AuthenticationScheme"/>.
FacebookOptions.cs (3)
22
AuthorizationEndpoint =
FacebookDefaults
.AuthorizationEndpoint;
23
TokenEndpoint =
FacebookDefaults
.TokenEndpoint;
24
UserInformationEndpoint =
FacebookDefaults
.UserInformationEndpoint;
Microsoft.AspNetCore.Authentication.Test (5)
FacebookTests.cs (5)
24
protected override string DefaultScheme =>
FacebookDefaults
.AuthenticationScheme;
133
await context.ChallengeAsync(
FacebookDefaults
.AuthenticationScheme);
165
await context.ChallengeAsync(
FacebookDefaults
.AuthenticationScheme, properties);
197
await context.ChallengeAsync(
FacebookDefaults
.AuthenticationScheme, properties);
333
if (req.RequestUri.GetComponents(UriComponents.SchemeAndServer | UriComponents.Path, UriFormat.UriEscaped) ==
FacebookDefaults
.TokenEndpoint)
SocialSample (2)
Startup.cs (2)
355
else if (string.Equals(
FacebookDefaults
.AuthenticationScheme, currentAuthType))
478
else if (string.Equals(
FacebookDefaults
.AuthenticationScheme, currentAuthType))