Implemented interface member:
method
SignOutAsync
Microsoft.AspNetCore.Authentication.IAuthenticationService.SignOutAsync(Microsoft.AspNetCore.Http.HttpContext, System.String, Microsoft.AspNetCore.Authentication.AuthenticationProperties)
1 override of SignOutAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
82
public override async Task
SignOutAsync
(HttpContext context, string? scheme, AuthenticationProperties? properties)
3 references to SignOutAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
86
await base.
SignOutAsync
(context, scheme, properties);
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMetricsTest.cs (2)
293
await authenticationService.
SignOutAsync
(httpContext, scheme: "custom", properties: null);
319
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => authenticationService.
SignOutAsync
(httpContext, scheme: "custom", properties: null));