3 types derived from OAuthOptions
Microsoft.AspNetCore.Authentication.Facebook (1)
Microsoft.AspNetCore.Authentication.Google (1)
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
1 instantiation of OAuthOptions
Microsoft.AspNetCore.Authentication.Test (1)
32 references to OAuthOptions
Microsoft.AspNetCore.Authentication.OAuth (19)
OAuthExtensions.cs (10)
22/// <param name="configureOptions">A delegate to configure <see cref="OAuthOptions"/>.</param>
24public static AuthenticationBuilder AddOAuth(this AuthenticationBuilder builder, string authenticationScheme, Action<OAuthOptions> configureOptions)
25=> builder.AddOAuth<OAuthOptions, OAuthHandler<OAuthOptions>>(authenticationScheme, configureOptions);
33/// <param name="configureOptions">A delegate to configure <see cref="OAuthOptions"/>.</param>
35public static AuthenticationBuilder AddOAuth(this AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<OAuthOptions> configureOptions)
36=> builder.AddOAuth<OAuthOptions, OAuthHandler<OAuthOptions>>(authenticationScheme, displayName, configureOptions);
46where TOptions : OAuthOptions, new()
59where TOptions : OAuthOptions, new()
Microsoft.AspNetCore.Authentication.Test (5)
SocialSample (8)