JwtBuilderResult constructor
Represents the result of building a JWT, including the token, key, builder, issue time, and expiration.
public JwtBuilderResult(string token, SymmetricSecurityKey? key, JwtTokenBuilder builder,
DateTime issuedAt, DateTime expires)
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. |
See Also
- class JwtTokenBuilder
- class JwtBuilderResult
- namespace Kestrun.Jwt