LoadAllAsync Method
LoadAllAsync(Boolean)
Loads all keys into the store.
Declaration
Task LoadAllAsync(bool replaceExistingValues)
Parameters
Boolean | replaceExistingValues | when |
Returns
Task | A task that will complete when the map store has been loaded. |
LoadAllAsync(ICollection<TKey>, Boolean)
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) |
Boolean | replaceExistingValues | when |
Returns
Task | A task that will complete when the map store has been loaded. |