The core authentication logic which must be provided by the handler. Will be invoked at most once per request. Do not call directly, call the wrapping Authenticate method instead.
Namespace: Microsoft.Owin.Security.Infrastructure
Assembly: Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)
Syntax
protected abstract Task<AuthenticationTicket> AuthenticateCoreAsync()
protected:
virtual Task<AuthenticationTicket^>^ AuthenticateCoreAsync() abstract
abstract AuthenticateCoreAsync : unit -> Task<AuthenticationTicket>
Protected MustOverride Function AuthenticateCoreAsync As Task(Of AuthenticationTicket)
Return Value
Type: System.Threading.Tasks.Task<AuthenticationTicket>
The ticket data provided by the authentication logic
See Also
AuthenticationHandler Class
Microsoft.Owin.Security.Infrastructure Namespace
Return to top