protected override async Task HandleSignOutAsync(SignOutContext context)
        {
            var signingOutContext = new BearerSigningOutContext(Context, Options);
            await Options.Events.SigningOut(signingOutContext);

            ApplyBearer(null);
        }
Exemplo n.º 2
0
 public Task SigningOut(BearerSigningOutContext context)
 {
     return(OnSigningOut(context));
 }