Show / Hide Table of Contents

Interface IClientRepository

Inherited Members
IBasicRepository<Client, Guid>.DeleteAsync(Guid, bool, CancellationToken)
IBasicRepository<Client, Guid>.DeleteManyAsync(IEnumerable<Guid>, bool, CancellationToken)
IBasicRepository<Client>.InsertAsync(Client, bool, CancellationToken)
IBasicRepository<Client>.InsertManyAsync(IEnumerable<Client>, bool, CancellationToken)
IBasicRepository<Client>.UpdateAsync(Client, bool, CancellationToken)
IBasicRepository<Client>.UpdateManyAsync(IEnumerable<Client>, bool, CancellationToken)
IBasicRepository<Client>.DeleteAsync(Client, bool, CancellationToken)
IBasicRepository<Client>.DeleteManyAsync(IEnumerable<Client>, bool, CancellationToken)
IReadOnlyBasicRepository<Client, Guid>.GetAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<Client, Guid>.FindAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<Client>.GetListAsync(bool, CancellationToken)
IReadOnlyBasicRepository<Client>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<Client>.GetPagedListAsync(int, int, string, bool, CancellationToken)
IRepository.IsChangeTrackingEnabled
Namespace: Volo.Abp.IdentityServer.Clients
Assembly: Volo.Abp.IdentityServer.Domain.dll
Syntax
public interface IClientRepository : IBasicRepository<Client, Guid>, IBasicRepository<Client>, IReadOnlyBasicRepository<Client, Guid>, IReadOnlyBasicRepository<Client>, IRepository

Methods

CheckClientIdExistAsync(string, Guid?, CancellationToken)

Declaration
Task<bool> CheckClientIdExistAsync(string clientId, Guid? expectedId = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string clientId
Guid? expectedId
CancellationToken cancellationToken
Returns
Type Description
Task<bool>

FindByClientIdAsync(string, bool, CancellationToken)

Declaration
Task<Client> FindByClientIdAsync(string clientId, bool includeDetails = true, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string clientId
bool includeDetails
CancellationToken cancellationToken
Returns
Type Description
Task<Client>

GetAllDistinctAllowedCorsOriginsAsync(CancellationToken)

Declaration
Task<List<string>> GetAllDistinctAllowedCorsOriginsAsync(CancellationToken cancellationToken = default)
Parameters
Type Name Description
CancellationToken cancellationToken
Returns
Type Description
Task<List<string>>

GetCountAsync(string, CancellationToken)

Declaration
Task<long> GetCountAsync(string filter = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<long>

GetListAsync(string, int, int, string, bool, CancellationToken)

Declaration
Task<List<Client>> GetListAsync(string sorting, int skipCount, int maxResultCount, string filter = null, bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string sorting
int skipCount
int maxResultCount
string filter
bool includeDetails
CancellationToken cancellationToken
Returns
Type Description
Task<List<Client>>

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