TsgcHTTP_JWT_Server › Methods
Public methods grouped by purpose, followed by the full alphabetical list.
| Name | Description |
|---|---|
| Validate | Decodes a JWT string and validates its signature against the configured algorithm, returning the decoded Header, Payload and any error text. |
| IsJWTTokenValid | Validates the Bearer token carried in the request: runs the full pipeline (OnJWTBeforeRequest, signature check, claim validations, OnJWTAfterValidateToken) and returns True when the token is accepted. |
| IsJWTUnauthorized | Final 401 gate: fires OnJWTUnauthorized so the application can accept the connection (CORS pre-flight, whitelisted endpoints) and returns True when the request must be rejected as Unauthorized. |
| Name | Description |
|---|---|
| IsJWTTokenValid | Validates the Bearer token carried in the request: runs the full pipeline (OnJWTBeforeRequest, signature check, claim validations, OnJWTAfterValidateToken) and returns True when the token is accepted. |
| IsJWTUnauthorized | Final 401 gate: fires OnJWTUnauthorized so the application can accept the connection (CORS pre-flight, whitelisted endpoints) and returns True when the request must be rejected as Unauthorized. |
| Validate | Decodes a JWT string and validates its signature against the configured algorithm, returning the decoded Header, Payload and any error text. |