Show / Hide Table of Contents

Interface IOpenIddictTokenRepository

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

Methods

DeleteManyByApplicationIdAsync(Guid, bool, CancellationToken)

Declaration
Task DeleteManyByApplicationIdAsync(Guid applicationId, bool autoSave = false, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid applicationId
bool autoSave
CancellationToken cancellationToken
Returns
Type Description
Task

DeleteManyByAuthorizationIdAsync(Guid, bool, CancellationToken)

Declaration
Task DeleteManyByAuthorizationIdAsync(Guid authorizationId, bool autoSave = false, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid authorizationId
bool autoSave
CancellationToken cancellationToken
Returns
Type Description
Task

DeleteManyByAuthorizationIdsAsync(Guid[], bool, CancellationToken)

Declaration
Task DeleteManyByAuthorizationIdsAsync(Guid[] authorizationIds, bool autoSave = false, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid[] authorizationIds
bool autoSave
CancellationToken cancellationToken
Returns
Type Description
Task

FindAsync(string, Guid, string, string, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindAsync(string subject, Guid client, string status, string type, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string subject
Guid client
string status
string type
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

FindAsync(string, Guid, string, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindAsync(string subject, Guid client, string status, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string subject
Guid client
string status
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

FindAsync(string, Guid, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindAsync(string subject, Guid client, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string subject
Guid client
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

FindByApplicationIdAsync(Guid, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindByApplicationIdAsync(Guid applicationId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid applicationId
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

FindByAuthorizationIdAsync(Guid, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindByAuthorizationIdAsync(Guid authorizationId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid authorizationId
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

FindByIdAsync(Guid, CancellationToken)

Declaration
Task<OpenIddictToken> FindByIdAsync(Guid id, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid id
CancellationToken cancellationToken
Returns
Type Description
Task<OpenIddictToken>

FindByReferenceIdAsync(string, CancellationToken)

Declaration
Task<OpenIddictToken> FindByReferenceIdAsync(string referenceId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string referenceId
CancellationToken cancellationToken
Returns
Type Description
Task<OpenIddictToken>

FindBySubjectAsync(string, CancellationToken)

Declaration
Task<List<OpenIddictToken>> FindBySubjectAsync(string subject, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string subject
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

ListAsync(int?, int?, CancellationToken)

Declaration
Task<List<OpenIddictToken>> ListAsync(int? count, int? offset, CancellationToken cancellationToken = default)
Parameters
Type Name Description
int? count
int? offset
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictToken>>

PruneAsync(DateTime, CancellationToken)

Declaration
Task<long> PruneAsync(DateTime date, CancellationToken cancellationToken = default)
Parameters
Type Name Description
DateTime date
CancellationToken cancellationToken
Returns
Type Description
Task<long>

RevokeByAuthorizationIdAsync(Guid, CancellationToken)

Declaration
ValueTask<long> RevokeByAuthorizationIdAsync(Guid id, CancellationToken cancellationToken)
Parameters
Type Name Description
Guid id
CancellationToken cancellationToken
Returns
Type Description
ValueTask<long>

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