Interface ICacheSupportsMultipleItems
Assembly: Volo.Abp.Caching.dll
Syntax
public interface ICacheSupportsMultipleItems
Methods
GetMany(IEnumerable<String>)
Declaration
byte[][] GetMany(IEnumerable<string> keys)
Parameters
Type |
Name |
Description |
IEnumerable<System.String> |
keys |
|
Returns
Type |
Description |
System.Byte[][] |
|
GetManyAsync(IEnumerable<String>, CancellationToken)
Declaration
Task<byte[][]> GetManyAsync(IEnumerable<string> keys, CancellationToken token = null)
Parameters
Type |
Name |
Description |
IEnumerable<System.String> |
keys |
|
CancellationToken |
token |
|
Returns
Type |
Description |
Task<System.Byte[][]> |
|
SetMany(IEnumerable<KeyValuePair<String, Byte[]>>, DistributedCacheEntryOptions)
Declaration
void SetMany(IEnumerable<KeyValuePair<string, byte[]>> items, DistributedCacheEntryOptions options)
Parameters
Type |
Name |
Description |
IEnumerable<KeyValuePair<System.String, System.Byte[]>> |
items |
|
DistributedCacheEntryOptions |
options |
|
SetManyAsync(IEnumerable<KeyValuePair<String, Byte[]>>, DistributedCacheEntryOptions, CancellationToken)
Declaration
Task SetManyAsync(IEnumerable<KeyValuePair<string, byte[]>> items, DistributedCacheEntryOptions options, CancellationToken token = null)
Parameters
Type |
Name |
Description |
IEnumerable<KeyValuePair<System.String, System.Byte[]>> |
items |
|
DistributedCacheEntryOptions |
options |
|
CancellationToken |
token |
|
Returns
Extension Methods