AuthenticationHandler.AuthenticateCoreAsync Method

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

'Declaration
Protected MustOverride Function AuthenticateCoreAsync As Task(Of AuthenticationTicket)
'Usage
Dim returnValue As Task(Of AuthenticationTicket)

returnValue = Me.AuthenticateCoreAsync()
protected abstract Task<AuthenticationTicket> AuthenticateCoreAsync()
protected:
virtual Task<AuthenticationTicket^>^ AuthenticateCoreAsync() abstract
abstract AuthenticateCoreAsync : unit -> Task<AuthenticationTicket> 
protected abstract function AuthenticateCoreAsync() : Task<AuthenticationTicket>

Return Value

Type: System.Threading.Tasks.Task<AuthenticationTicket>
The ticket data provided by the authentication logic

See Also

Reference

AuthenticationHandler Class

Microsoft.Owin.Security.Infrastructure Namespace