Show / Hide Table of Contents

Interface IDistributedCache<TCacheItem>

Inherited Members
IDistributedCache<TCacheItem, string>.Get(string, bool?, bool)
IDistributedCache<TCacheItem, string>.GetMany(IEnumerable<string>, bool?, bool)
IDistributedCache<TCacheItem, string>.GetManyAsync(IEnumerable<string>, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.GetAsync(string, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.GetOrAdd(string, Func<TCacheItem>, Func<DistributedCacheEntryOptions>, bool?, bool)
IDistributedCache<TCacheItem, string>.GetOrAddAsync(string, Func<Task<TCacheItem>>, Func<DistributedCacheEntryOptions>, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.GetOrAddMany(IEnumerable<string>, Func<IEnumerable<string>, List<KeyValuePair<string, TCacheItem>>>, Func<DistributedCacheEntryOptions>, bool?, bool)
IDistributedCache<TCacheItem, string>.GetOrAddManyAsync(IEnumerable<string>, Func<IEnumerable<string>, Task<List<KeyValuePair<string, TCacheItem>>>>, Func<DistributedCacheEntryOptions>, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.Set(string, TCacheItem, DistributedCacheEntryOptions, bool?, bool)
IDistributedCache<TCacheItem, string>.SetAsync(string, TCacheItem, DistributedCacheEntryOptions, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.SetMany(IEnumerable<KeyValuePair<string, TCacheItem>>, DistributedCacheEntryOptions, bool?, bool)
IDistributedCache<TCacheItem, string>.SetManyAsync(IEnumerable<KeyValuePair<string, TCacheItem>>, DistributedCacheEntryOptions, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.Refresh(string, bool?)
IDistributedCache<TCacheItem, string>.RefreshAsync(string, bool?, CancellationToken)
IDistributedCache<TCacheItem, string>.RefreshMany(IEnumerable<string>, bool?)
IDistributedCache<TCacheItem, string>.RefreshManyAsync(IEnumerable<string>, bool?, CancellationToken)
IDistributedCache<TCacheItem, string>.Remove(string, bool?, bool)
IDistributedCache<TCacheItem, string>.RemoveAsync(string, bool?, bool, CancellationToken)
IDistributedCache<TCacheItem, string>.RemoveMany(IEnumerable<string>, bool?, bool)
IDistributedCache<TCacheItem, string>.RemoveManyAsync(IEnumerable<string>, bool?, bool, CancellationToken)
Namespace: Volo.Abp.Caching
Assembly: Volo.Abp.Caching.dll
Syntax
public interface IDistributedCache<TCacheItem> : IDistributedCache<TCacheItem, string> where TCacheItem : class
Type Parameters
Name Description
TCacheItem

Properties

InternalCache

Declaration
IDistributedCache<TCacheItem, string> InternalCache { get; }
Property Value
Type Description
IDistributedCache<TCacheItem, string>

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