Show / Hide Table of Contents

Interface IIdentityRoleAppService

Inherited Members
IReadOnlyAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRoleListInput>.GetAsync(Guid)
IReadOnlyAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRoleListInput>.GetListAsync(GetIdentityRoleListInput)
ICreateAppService<IdentityRoleDto, IdentityRoleCreateDto>.CreateAsync(IdentityRoleCreateDto)
IUpdateAppService<IdentityRoleDto, Guid, IdentityRoleUpdateDto>.UpdateAsync(Guid, IdentityRoleUpdateDto)
IDeleteAppService<Guid>.DeleteAsync(Guid)
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.Application.Contracts.dll
Syntax
public interface IIdentityRoleAppService : ICrudAppService<IdentityRoleDto, Guid, GetIdentityRoleListInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>, ICrudAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRoleListInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>, IReadOnlyAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRoleListInput>, ICreateUpdateAppService<IdentityRoleDto, Guid, IdentityRoleCreateDto, IdentityRoleUpdateDto>, ICreateAppService<IdentityRoleDto, IdentityRoleCreateDto>, IUpdateAppService<IdentityRoleDto, Guid, IdentityRoleUpdateDto>, IDeleteAppService<Guid>, IApplicationService, IRemoteService

Methods

GetAllClaimTypesAsync()

Declaration
Task<List<ClaimTypeDto>> GetAllClaimTypesAsync()
Returns
Type Description
Task<List<ClaimTypeDto>>

GetAllListAsync()

Declaration
Task<ListResultDto<IdentityRoleDto>> GetAllListAsync()
Returns
Type Description
Task<ListResultDto<IdentityRoleDto>>

GetClaimsAsync(Guid)

Declaration
Task<List<IdentityRoleClaimDto>> GetClaimsAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<List<IdentityRoleClaimDto>>

MoveAllUsersAsync(Guid, Guid?)

Declaration
Task MoveAllUsersAsync(Guid id, Guid? targetRoleId)
Parameters
Type Name Description
Guid id
Guid? targetRoleId
Returns
Type Description
Task

UpdateClaimsAsync(Guid, List<IdentityRoleClaimDto>)

Declaration
Task UpdateClaimsAsync(Guid id, List<IdentityRoleClaimDto> input)
Parameters
Type Name Description
Guid id
List<IdentityRoleClaimDto> input
Returns
Type Description
Task

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 Volosoft