4 types derived from RemoteAuthenticationOptions
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthOptions.cs (1)
12public class OAuthOptions : RemoteAuthenticationOptions
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectOptions.cs (1)
17public class OpenIdConnectOptions : RemoteAuthenticationOptions
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
13public class TwitterOptions : RemoteAuthenticationOptions
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationOptions.cs (1)
20public class WsFederationOptions : RemoteAuthenticationOptions
19 references to RemoteAuthenticationOptions
Microsoft.AspNetCore.Authentication (18)
AuthenticationBuilder.cs (3)
87/// <typeparam name="TOptions">The <see cref="RemoteAuthenticationOptions"/> type to configure the handler.</typeparam> 94where TOptions : RemoteAuthenticationOptions, new() 113private sealed class EnsureSignInScheme<TOptions> : IPostConfigureOptions<TOptions> where TOptions : RemoteAuthenticationOptions
Events\AccessDeniedContext.cs (5)
11public class AccessDeniedContext : HandleRequestContext<RemoteAuthenticationOptions> 18/// <param name="options">The <see cref="RemoteAuthenticationOptions"/>.</param> 22RemoteAuthenticationOptions options) 29/// By default, this property is set to <see cref="RemoteAuthenticationOptions.AccessDeniedPath"/>. 46/// By default, this property is set to <see cref="RemoteAuthenticationOptions.ReturnUrlParameter"/>.
Events\RemoteFailureContext.cs (3)
11public class RemoteFailureContext : HandleRequestContext<RemoteAuthenticationOptions> 18/// <param name="options">The <see cref="RemoteAuthenticationOptions"/>.</param> 23RemoteAuthenticationOptions options,
Events\TicketReceivedContext.cs (3)
11public class TicketReceivedContext : RemoteAuthenticationContext<RemoteAuthenticationOptions> 18/// <param name="options">The <see cref="RemoteAuthenticationOptions"/>.</param> 23RemoteAuthenticationOptions options,
RemoteAuthenticationHandler.cs (1)
19where TOptions : RemoteAuthenticationOptions, new()
RemoteAuthenticationOptions.cs (3)
20/// Initializes a new <see cref="RemoteAuthenticationOptions"/>. 160private readonly RemoteAuthenticationOptions _options; 162public CorrelationCookieBuilder(RemoteAuthenticationOptions remoteAuthenticationOptions)
Microsoft.AspNetCore.Authentication.Test (1)
RemoteAuthenticationTests.cs (1)
14public abstract class RemoteAuthenticationTests<TOptions> : SharedAuthenticationTests<TOptions> where TOptions : RemoteAuthenticationOptions