|   | AuthenticationHandlerAuthorizeAsync Method | 
        
        
            Called once by common code after authentication to respond directly to specifically known paths.
            
        
        Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic Task<bool> AuthorizeAsync()
Public Function AuthorizeAsync As Task(Of Boolean)
public:
Task<bool>^ AuthorizeAsync()
member AuthorizeAsync : unit -> Task<bool> 
function AuthorizeAsync();
Return Value
TaskBoolean
            Returning true will cause the common code to call the next middle-ware in line.
            Returning false will cause the common code to begin the async completion journey
            without calling the rest of the middle-ware pipeline.
            
 See Also
See Also