15 references to SignOutAsync
Microsoft.AspNetCore.Authentication (1)
SignOutAuthenticationHandler.cs (1)
41? Context.SignOutAsync(target, properties)
Microsoft.AspNetCore.Authentication.Abstractions (3)
AuthenticationHttpContextExtensions.cs (3)
166public static Task SignOutAsync(this HttpContext context) => context.SignOutAsync(scheme: null, properties: null); 175public static Task SignOutAsync(this HttpContext context, AuthenticationProperties? properties) => context.SignOutAsync(scheme: null, properties: properties); 183public static Task SignOutAsync(this HttpContext context, string? scheme) => context.SignOutAsync(scheme, properties: null);
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
213await Context.SignOutAsync(target, properties);
Microsoft.AspNetCore.Authentication.Test (3)
OpenIdConnect\TestServerBuilder.cs (1)
97await context.SignOutAsync(
WsFederation\WsFederationTest.cs (1)
385await context.SignOutAsync(WsFederationDefaults.AuthenticationScheme, authProperties);
WsFederation\WsFederationTest_Handler.cs (1)
381await context.SignOutAsync(WsFederationDefaults.AuthenticationScheme, authProperties);
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
416await Context.SignOutAsync(target, properties);
Microsoft.AspNetCore.Http.Results (3)
Results.cs (1)
75/// Creates an <see cref="IResult"/> that on execution invokes <see cref="AuthenticationHttpContextExtensions.SignOutAsync(HttpContext, string?, AuthenticationProperties?)" />.
SignOutHttpResult.cs (1)
88await httpContext.SignOutAsync(AuthenticationSchemes[i], Properties);
TypedResults.cs (1)
79/// Creates a <see cref="SignOutHttpResult"/> that on execution invokes <see cref="AuthenticationHttpContextExtensions.SignOutAsync(HttpContext, string?, AuthenticationProperties?)" />.
Microsoft.AspNetCore.Mvc.Core (1)
SignOutResult.cs (1)
125await httpContext.SignOutAsync(AuthenticationSchemes[i], Properties);
OpenIdConnectSample (1)
Startup.cs (1)
176await context.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme, new AuthenticationProperties()
WsFedSample (1)
Startup.cs (1)
71await context.SignOutAsync(WsFederationDefaults.AuthenticationScheme, new AuthenticationProperties()