9 references to AuthenticationScheme
Microsoft.AspNetCore.Authentication.MicrosoftAccount (6)
MicrosoftAccountExtensions.cs (6)
16
/// The default scheme is specified by <see cref="MicrosoftAccountDefaults.
AuthenticationScheme
"/>.
24
=> builder.AddMicrosoftAccount(MicrosoftAccountDefaults.
AuthenticationScheme
, _ => { });
28
/// The default scheme is specified by <see cref="MicrosoftAccountDefaults.
AuthenticationScheme
"/>.
37
=> builder.AddMicrosoftAccount(MicrosoftAccountDefaults.
AuthenticationScheme
, configureOptions);
41
/// The default scheme is specified by <see cref="MicrosoftAccountDefaults.
AuthenticationScheme
"/>.
55
/// The default scheme is specified by <see cref="MicrosoftAccountDefaults.
AuthenticationScheme
"/>.
Microsoft.AspNetCore.Authentication.Test (1)
MicrosoftAccountTests.cs (1)
25
protected override string DefaultScheme => MicrosoftAccountDefaults.
AuthenticationScheme
;
SocialSample (2)
Startup.cs (2)
305
|| string.Equals(MicrosoftAccountDefaults.
AuthenticationScheme
, currentAuthType)
474
else if (string.Equals(MicrosoftAccountDefaults.
AuthenticationScheme
, currentAuthType))