-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionsauthorizationservices ITokenProvider
BigMakCode edited this page Aug 5, 2024
·
1 revision
Provides token creation with claims.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Authorization.Services
EasyExtensions.Authorization.Services.ITokenProvider[[ITokenProvider]]
class EasyExtensions.Authorization.Services.ITokenProvider interfaceStyle;
end
Returns | Name |
---|---|
string |
CreateToken (... ) |
Provides token creation with claims.
public string CreateToken(Func<ClaimBuilder, ClaimBuilder> claimBuilder)
Type | Name | Description |
---|---|---|
Func <ClaimBuilder , ClaimBuilder > |
claimBuilder |
public string CreateToken(IClaimProvider claimProvider)
Type | Name | Description |
---|---|---|
IClaimProvider |
claimProvider | Claim provider. |
Creates a token with claims.
Token.
Generated with ModularDoc