LoadAllAsync Method
LoadAllAsync(bool)
Loads all keys into the store.
Declaration
Task LoadAllAsync(bool replaceExistingValues)
Parameters
bool | replaceExistingValues | when |
Returns
Task | A task that will complete when the map store has been loaded. |
LoadAllAsync(ICollection<TKey>, bool)
Loads the given keys into the store.
Declaration
Task LoadAllAsync(ICollection<TKey> keys, bool replaceExistingValues)
Parameters
ICollection<TKey> | keys | keys of the values entries to load (keys inside the collection cannot be null) |
bool | replaceExistingValues | when |
Returns
Task | A task that will complete when the map store has been loaded. |