Show / Hide Table of Contents

Class IdentityClaimTypeAppService

Inheritance
object
ApplicationService
IdentityClaimTypeAppService
Implements
IAvoidDuplicateCrossCuttingConcerns
IValidationEnabled
IUnitOfWorkEnabled
IAuditingEnabled
IGlobalFeatureCheckingEnabled
ITransientDependency
IIdentityClaimTypeAppService
ICrudAppService<ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>
ICrudAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>
IReadOnlyAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput>
ICreateUpdateAppService<ClaimTypeDto, Guid, CreateClaimTypeDto, UpdateClaimTypeDto>
ICreateAppService<ClaimTypeDto, CreateClaimTypeDto>
IUpdateAppService<ClaimTypeDto, Guid, UpdateClaimTypeDto>
IDeleteAppService<Guid>
IApplicationService
IRemoteService
Inherited Members
ApplicationService.CheckPolicyAsync(string)
ApplicationService.CreateLocalizer()
ApplicationService.LazyServiceProvider
ApplicationService.ServiceProvider
ApplicationService.CommonPostfixes
ApplicationService.AppliedCrossCuttingConcerns
ApplicationService.UnitOfWorkManager
ApplicationService.AsyncExecuter
ApplicationService.ObjectMapperContext
ApplicationService.ObjectMapper
ApplicationService.GuidGenerator
ApplicationService.LoggerFactory
ApplicationService.CurrentTenant
ApplicationService.DataFilter
ApplicationService.CurrentUser
ApplicationService.SettingProvider
ApplicationService.Clock
ApplicationService.AuthorizationService
ApplicationService.FeatureChecker
ApplicationService.StringLocalizerFactory
ApplicationService.L
ApplicationService.LocalizationResource
ApplicationService.CurrentUnitOfWork
ApplicationService.Logger
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.Application.dll
Syntax
[Authorize("AbpIdentity.ClaimTypes")]
public class IdentityClaimTypeAppService : ApplicationService, IAvoidDuplicateCrossCuttingConcerns, IValidationEnabled, IUnitOfWorkEnabled, IAuditingEnabled, IGlobalFeatureCheckingEnabled, ITransientDependency, IIdentityClaimTypeAppService, ICrudAppService<ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>, ICrudAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput, CreateClaimTypeDto, UpdateClaimTypeDto>, IReadOnlyAppService<ClaimTypeDto, ClaimTypeDto, Guid, GetIdentityClaimTypesInput>, ICreateUpdateAppService<ClaimTypeDto, Guid, CreateClaimTypeDto, UpdateClaimTypeDto>, ICreateAppService<ClaimTypeDto, CreateClaimTypeDto>, IUpdateAppService<ClaimTypeDto, Guid, UpdateClaimTypeDto>, IDeleteAppService<Guid>, IApplicationService, IRemoteService

Constructors

IdentityClaimTypeAppService(IdentityClaimTypeManager, IIdentityClaimTypeRepository)

Declaration
public IdentityClaimTypeAppService(IdentityClaimTypeManager identityClaimTypeManager, IIdentityClaimTypeRepository identityClaimTypeRepository)
Parameters
Type Name Description
IdentityClaimTypeManager identityClaimTypeManager
IIdentityClaimTypeRepository identityClaimTypeRepository

Properties

IdentityClaimTypeManager

Declaration
protected IdentityClaimTypeManager IdentityClaimTypeManager { get; }
Property Value
Type Description
IdentityClaimTypeManager

IdentityClaimTypeRepository

Declaration
protected IIdentityClaimTypeRepository IdentityClaimTypeRepository { get; }
Property Value
Type Description
IIdentityClaimTypeRepository

Methods

CreateAsync(CreateClaimTypeDto)

Declaration
[Authorize("AbpIdentity.ClaimTypes.Create")]
public virtual Task<ClaimTypeDto> CreateAsync(CreateClaimTypeDto input)
Parameters
Type Name Description
CreateClaimTypeDto input
Returns
Type Description
Task<ClaimTypeDto>

DeleteAsync(Guid)

Declaration
[Authorize("AbpIdentity.ClaimTypes.Delete")]
public virtual Task DeleteAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task

GetAllListAsync()

Declaration
public virtual Task<List<ClaimTypeDto>> GetAllListAsync()
Returns
Type Description
Task<List<ClaimTypeDto>>

GetAsync(Guid)

Declaration
public virtual Task<ClaimTypeDto> GetAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<ClaimTypeDto>

GetListAsync(GetIdentityClaimTypesInput)

Declaration
public virtual Task<PagedResultDto<ClaimTypeDto>> GetListAsync(GetIdentityClaimTypesInput input)
Parameters
Type Name Description
GetIdentityClaimTypesInput input
Returns
Type Description
Task<PagedResultDto<ClaimTypeDto>>

MapClaimTypeToDto(IdentityClaimType)

Declaration
protected virtual ClaimTypeDto MapClaimTypeToDto(IdentityClaimType claimType)
Parameters
Type Name Description
IdentityClaimType claimType
Returns
Type Description
ClaimTypeDto

MapListClaimTypeToListDto(List<IdentityClaimType>)

Declaration
protected virtual List<ClaimTypeDto> MapListClaimTypeToListDto(List<IdentityClaimType> claimTypes)
Parameters
Type Name Description
List<IdentityClaimType> claimTypes
Returns
Type Description
List<ClaimTypeDto>

UpdateAsync(Guid, UpdateClaimTypeDto)

Declaration
[Authorize("AbpIdentity.ClaimTypes.Update")]
public virtual Task<ClaimTypeDto> UpdateAsync(Guid id, UpdateClaimTypeDto input)
Parameters
Type Name Description
Guid id
UpdateClaimTypeDto input
Returns
Type Description
Task<ClaimTypeDto>

Implements

IAvoidDuplicateCrossCuttingConcerns
IValidationEnabled
IUnitOfWorkEnabled
IAuditingEnabled
IGlobalFeatureCheckingEnabled
ITransientDependency
IIdentityClaimTypeAppService
ICrudAppService<TEntityDto, TKey, TGetListInput, TCreateInput, TUpdateInput>
ICrudAppService<TGetOutputDto, TGetListOutputDto, TKey, TGetListInput, TCreateInput, TUpdateInput>
IReadOnlyAppService<TGetOutputDto, TGetListOutputDto, TKey, TGetListInput>
ICreateUpdateAppService<TGetOutputDto, TKey, TCreateUpdateInput, TUpdateInput>
ICreateAppService<TGetOutputDto, TCreateInput>
IUpdateAppService<TGetOutputDto, TKey, TUpdateInput>
IDeleteAppService<TKey>
IApplicationService
IRemoteService

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform