public virtual void Authenticate(IAuthenticateContext context) { if (context.AuthenticationTypes.Contains(BaseOptions.AuthenticationType, StringComparer.Ordinal)) { AuthenticationTicket ticket = Authenticate(); if (ticket != null && ticket.Identity != null) { context.Authenticated(ticket.Identity, ticket.Properties.Dictionary, BaseOptions.Description.Dictionary); } else { context.NotAuthenticated(BaseOptions.AuthenticationType, properties: null, description: BaseOptions.Description.Dictionary); } } if (PriorHandler != null) { PriorHandler.Authenticate(context); } }
public virtual void Authenticate(IAuthenticateContext context) { if (ShouldHandleScheme(context.AuthenticationScheme)) { var ticket = Authenticate(); if (ticket?.Principal != null) { AuthenticateCalled = true; context.Authenticated(ticket.Principal, ticket.Properties.Dictionary, BaseOptions.Description.Dictionary); } else { context.NotAuthenticated(); } } if (PriorHandler != null) { PriorHandler.Authenticate(context); } }