12 references to AuthenticationScheme
Microsoft.AspNetCore.Authentication.Facebook (6)
FacebookExtensions.cs (6)
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
"/>.
55
/// The default scheme is specified by <see cref="FacebookDefaults.
AuthenticationScheme
"/>.
Microsoft.AspNetCore.Authentication.Test (4)
FacebookTests.cs (4)
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);
SocialSample (2)
Startup.cs (2)
355
else if (string.Equals(FacebookDefaults.
AuthenticationScheme
, currentAuthType))
478
else if (string.Equals(FacebookDefaults.
AuthenticationScheme
, currentAuthType))