JwtBuilderResult class
Represents the result of building a JWT, including the token, key, builder, issue time, and expiration.
public sealed class JwtBuilderResult
| parameter | description |
| token | The JWT compact string. |
| key | The symmetric security key used for signing. |
| builder | The JWT token builder instance. |
| issuedAt | The time at which the token was issued. |
| expires | The expiration time of the token. |
Public Members
| name | description |
| JwtBuilderResult(…) | Represents the result of building a JWT, including the token, key, builder, issue time, and expiration. |
| Expires { get; } | Gets the expiration time of the token. |
| IssuedAt { get; } | Gets the time at which the token was issued. |
| GetValidationParameters(…) | Gets the TokenValidationParameters for validating the JWT token. |
| Token() | Get the JWT compact string. |
| Validate(…) | Synchronously validates the specified JWT using the configured validation parameters. |
| ValidateAsync(…) | Asynchronously validates the specified JWT using the configured validation parameters. |
See Also