2 implementations of SetUnprotectedAsync
Aspire.Dashboard (1)
Model\BrowserStorage\LocalBrowserStorage.cs (1)
46public async Task SetUnprotectedAsync<TValue>(string key, TValue value)
Aspire.Dashboard.Components.Tests (1)
Shared\TestLocalStorage.cs (1)
33public Task SetUnprotectedAsync<T>(string key, T value)
5 references to SetUnprotectedAsync
Aspire.Dashboard (5)
Components\Controls\SummaryDetailsView.razor.cs (2)
158await LocalStore.SetUnprotectedAsync(GetOrientationStorageKey(), Orientation); 204await LocalStore.SetUnprotectedAsync(GetSizeStorageKey(), Math.Round(panel1Fraction, 3));
Components\Dialogs\TextVisualizerDialog.razor.cs (1)
303await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.TextVisualizerDialogSettings, new TextVisualizerDialogSettings(SecretsWarningAcknowledged: true));
Components\Layout\MainLayout.razor.cs (1)
133await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.UnsecuredTelemetryMessageDismissedKey, true);
Components\Pages\ConsoleLogs.razor.cs (1)
376await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.ConsoleLogConsoleSettings, new ConsoleLogConsoleSettings(showTimestamp, isTimestampUtc));