Click or drag to resize

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.Security
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public override Task<bool> InvokeAsync()
View Source

Return 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