Interface IRequestAuthenticator
Defines the contract for validating incoming requests (Gatekeeper).
Namespace: Morpheo.Sdk
Assembly: Morpheo.Sdk.dll
Syntax
public interface IRequestAuthenticator
Methods
| Edit this page View SourceIsAuthorizedAsync(HttpContext)
Verifies if the HTTP request is authorized.
Declaration
Task<bool> IsAuthorizedAsync(HttpContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| HttpContext | context | The HTTP context. |
Returns
| Type | Description |
|---|---|
| Task<bool> | True if authorized, False otherwise. |