|
AuthenticationHandlerInvokeAsync Method
|
Called once by common code after initialization. If an authentication middle-ware
responds directly to specifically known paths it must override this virtual,
compare the request path to it's known paths, provide any response information
as appropriate, and true to stop further processing.
Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax public override Task<bool> InvokeAsync()
Public Overrides Function InvokeAsync As Task(Of Boolean)
public:
virtual Task<bool>^ InvokeAsync() override
abstract InvokeAsync : unit -> Task<bool>
override InvokeAsync : unit -> Task<bool>
View SourceReturn Value
TaskBoolean
Returning false will cause the common code to call the next middle-ware in line.
Returning true will cause the common code to begin the async completion journey
without calling the rest of the middle-ware pipeline.
See Also