-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionssentryfactories UserFactory
BigMakCode edited this page Aug 5, 2024
·
1 revision
Implementaion of IUserFactory with JWT payload parsing.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Sentry.Factories
EasyExtensions.Sentry.Factories.UserFactory[[UserFactory]]
end
subgraph Sentry.AspNetCore
Sentry.AspNetCore.IUserFactory[[IUserFactory]]
end
Sentry.AspNetCore.IUserFactory --> EasyExtensions.Sentry.Factories.UserFactory
Returns | Name |
---|---|
User |
Create (HttpContext context)Create User from JWT payload information. |
Implementaion of IUserFactory with JWT payload parsing.
IUserFactory
public UserFactory()
public virtual User Create(HttpContext context)
Type | Name | Description |
---|---|---|
HttpContext |
context | Current HttpContext instance. |
Create User from JWT payload information.
User instance.
Generated with ModularDoc