Class IdentityClaimTypeController
Implements
ICrudAppService<ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>
ICrudAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>
IApplicationService
IRemoteService
IDeleteAppService<Guid>
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.HttpApi.dll
Syntax
[Area("identity")]
[Route("api/identity/claim-types")]
public class IdentityClaimTypeController : AbpControllerBase, IIdentityClaimTypeAppService, ICrudAppService<ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>, ICrudAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>, IReadOnlyAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput>, IApplicationService, IRemoteService, ICreateUpdateAppService<ClaimTypeDto, Guid, CreateClaimTypeDto, UpdateClaimTypeDto>, ICreateAppService<ClaimTypeDto, CreateClaimTypeDto>, IUpdateAppService<ClaimTypeDto, Guid, UpdateClaimTypeDto>, IDeleteAppService<Guid>
Constructors
IdentityClaimTypeController(IIdentityClaimTypeAppService)
Declaration
public IdentityClaimTypeController(IIdentityClaimTypeAppService claimTypeAppService)
Parameters
Type | Name | Description |
---|---|---|
IIdentityClaimTypeAppService | claimTypeAppService |
Properties
ClaimTypeAppService
Declaration
protected IIdentityClaimTypeAppService ClaimTypeAppService { get; }
Property Value
Type | Description |
---|---|
IIdentityClaimTypeAppService |
Methods
CreateAsync(CreateClaimTypeDto)
Declaration
[HttpPost]
public virtual Task<ClaimTypeDto> CreateAsync(CreateClaimTypeDto input)
Parameters
Type | Name | Description |
---|---|---|
CreateClaimTypeDto | input |
Returns
Type | Description |
---|---|
Task<ClaimTypeDto> |
DeleteAsync(Guid)
Declaration
[HttpDelete]
[Route("{id}")]
public virtual Task DeleteAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task |
GetAsync(Guid)
Declaration
[HttpGet]
[Route("{id}")]
public virtual Task<ClaimTypeDto> GetAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task<ClaimTypeDto> |
GetListAsync(GetIdentityClaimTypesInput)
Declaration
[HttpGet]
public virtual Task<PagedResultDto<ClaimTypeDto>> GetListAsync(GetIdentityClaimTypesInput input)
Parameters
Type | Name | Description |
---|---|---|
GetIdentityClaimTypesInput | input |
Returns
Type | Description |
---|---|
Task<PagedResultDto<ClaimTypeDto>> |
UpdateAsync(Guid, UpdateClaimTypeDto)
Declaration
[HttpPut]
[Route("{id}")]
public virtual Task<ClaimTypeDto> UpdateAsync(Guid id, UpdateClaimTypeDto input)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | |
UpdateClaimTypeDto | input |
Returns
Type | Description |
---|---|
Task<ClaimTypeDto> |
Implements
Volo.Abp.Application.Services.ICrudAppService<,,,,>
Volo.Abp.Application.Services.ICrudAppService<,,,,,>
Volo.Abp.Application.Services.IReadOnlyAppService<,,,>
Volo.Abp.Application.Services.IApplicationService
Volo.Abp.IRemoteService
Volo.Abp.Application.Services.ICreateUpdateAppService<,,,>
Volo.Abp.Application.Services.ICreateAppService<,>
Volo.Abp.Application.Services.IUpdateAppService<,,>
Volo.Abp.Application.Services.IDeleteAppService<>