8 references to SignOutAsync
Microsoft.AspNetCore.Authentication (1)
SignOutAuthenticationHandler.cs (1)
41
? Context.
SignOutAsync
(target, properties)
Microsoft.AspNetCore.Authentication.Abstractions (3)
AuthenticationHttpContextExtensions.cs (3)
166
public static Task SignOutAsync(this HttpContext context) => context.
SignOutAsync
(scheme: null, properties: null);
175
public static Task SignOutAsync(this HttpContext context, AuthenticationProperties? properties) => context.
SignOutAsync
(scheme: null, properties: properties);
183
public static Task SignOutAsync(this HttpContext context, string? scheme) => context.
SignOutAsync
(scheme, properties: null);
Microsoft.AspNetCore.Http.Results (3)
Results.cs (1)
76
/// Creates an <see cref="IResult"/> that on execution invokes <see cref="AuthenticationHttpContextExtensions.
SignOutAsync
(HttpContext, string?, AuthenticationProperties?)" />.
SignOutHttpResult.cs (1)
88
await httpContext.
SignOutAsync
(AuthenticationSchemes[i], Properties);
TypedResults.cs (1)
80
/// Creates a <see cref="SignOutHttpResult"/> that on execution invokes <see cref="AuthenticationHttpContextExtensions.
SignOutAsync
(HttpContext, string?, AuthenticationProperties?)" />.
Microsoft.AspNetCore.Mvc.Core (1)
SignOutResult.cs (1)
125
await httpContext.
SignOutAsync
(AuthenticationSchemes[i], Properties);