4 types derived from RemoteAuthenticationHandler
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
23public class OAuthHandler<TOptions> : RemoteAuthenticationHandler<TOptions> where TOptions : OAuthOptions, new()
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
30public class OpenIdConnectHandler : RemoteAuthenticationHandler<OpenIdConnectOptions>, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
23public partial class TwitterHandler : RemoteAuthenticationHandler<TwitterOptions>
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
18public class WsFederationHandler : RemoteAuthenticationHandler<WsFederationOptions>, IAuthenticationSignOutHandler
6 references to RemoteAuthenticationHandler
Microsoft.AspNetCore.Authentication (6)
AuthenticationBuilder.cs (3)
84/// Adds a <see cref="RemoteAuthenticationHandler{TOptions}"/> based <see cref="AuthenticationScheme"/> that supports remote authentication 88/// <typeparam name="THandler">The <see cref="RemoteAuthenticationHandler{TOptions}"/> used to handle this scheme.</typeparam> 95where THandler : RemoteAuthenticationHandler<TOptions>
RemoteAuthenticationHandler.cs (2)
41/// Initializes a new instance of <see cref="RemoteAuthenticationHandler{TOptions}" />. 52/// Initializes a new instance of <see cref="RemoteAuthenticationHandler{TOptions}" />.
RemoteAuthenticationOptions.cs (1)
11/// Contains the options used by the <see cref="RemoteAuthenticationHandler{T}"/>.