|
AuthenticationHandlerAuthenticateCoreAsync 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: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax protected override Task<AuthenticationTicket> AuthenticateCoreAsync()
Protected Overrides Function AuthenticateCoreAsync As Task(Of AuthenticationTicket)
protected:
virtual Task<AuthenticationTicket^>^ AuthenticateCoreAsync() override
abstract AuthenticateCoreAsync : unit -> Task<AuthenticationTicket>
override AuthenticateCoreAsync : unit -> Task<AuthenticationTicket>
function AuthenticateCoreAsync();
View SourceReturn Value
TaskAuthenticationTicketThe ticket data provided by the authentication logic
See Also