3 implementations of SessionStorageKey
Aspire.Dashboard (3)
Components\Pages\Metrics.razor.cs (1)
30public string SessionStorageKey => "Metrics_PageState";
Components\Pages\StructuredLogs.razor.cs (1)
47public string SessionStorageKey => "StructuredLogs_PageState";
Components\Pages\Traces.razor.cs (1)
43public string SessionStorageKey => "Traces_PageState";
2 references to SessionStorageKey
Aspire.Dashboard (2)
Components\Pages\IPageWithSessionAndUrlState.cs (2)
78await page.SessionStorage.SetAsync(page.SessionStorageKey, serializableViewModel).ConfigureAwait(false); 86var result = await page.SessionStorage.GetAsync<TSerializableViewModel>(page.SessionStorageKey).ConfigureAwait(false);