Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Announcement Discussion: AuthenticationHandler<T> is now only async, AuthenticateCore() renamed to HandleAuthenticateAsync() #379

@blowdart

Description

@blowdart

Authentication handlers have now dropped their synchronous methods and are fully async

In addition to this there has been method renames;

protected override AuthenticationTicket AuthenticateCore()

has now become

protected override async Task<AuthenticationTicket> HandleAuthenticateAsync()
protected override void ApplyResponseChallenge()

has been split and now becomes

protected override async Task<bool> HandleUnauthorizedAsync(ChallengeContext context)
protected override async Task<bool> HandleForbiddenAsync(ChallengeContext context)

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions