3 implementations of SetAsync
Aspire.Dashboard (1)
Model\BrowserStorage\BrowserStorageBase.cs (1)
23
public async Task
SetAsync
<T>(string key, T value)
Aspire.Dashboard.Components.Tests (2)
Shared\TestLocalStorage.cs (1)
28
public Task
SetAsync
<T>(string key, T value)
Shared\TestSessionStorage.cs (1)
24
public Task
SetAsync
<T>(string key, T value)
1 reference to SetAsync
Aspire.Dashboard (1)
Components\Pages\IPageWithSessionAndUrlState.cs (1)
82
await page.SessionStorage.
SetAsync
(page.SessionStorageKey, serializableViewModel).ConfigureAwait(false);