-
-
Notifications
You must be signed in to change notification settings - Fork 44
dataabstractions ILookupCacheT
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Abstractions
Data.Abstractions.ILookupCache_1[[ILookupCache< T >]]
class Data.Abstractions.ILookupCache_1 interfaceStyle;
end
Returns | Name |
---|---|
Task <T > |
AddAsync (T item) |
Task <T > |
FirstAsync (Func <T , bool > query) |
IEnumerable <T > |
GetAll () |
Task |
InitializeAsync () |
public Task InitializeAsync()
public Task<T> AddAsync(T item)
Type | Name | Description |
---|---|---|
T |
item |
public Task<T> FirstAsync(Func<T, bool> query)
Type | Name | Description |
---|---|---|
Func <T , bool > |
query |
public IEnumerable<T> GetAll()
Generated with ModularDoc