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)
46public Task SetUnprotectedAsync<T>(string key, T value)
6 references to SetUnprotectedAsync
Aspire.Dashboard (6)
Components\Controls\SummaryDetailsView.razor.cs (2)
157await LocalStore.SetUnprotectedAsync(GetOrientationStorageKey(), Orientation); 206await LocalStore.SetUnprotectedAsync(GetSizeStorageKey(), Math.Round(panel1Fraction, 3));
Components\Dialogs\TextVisualizerDialog.razor.cs (1)
158await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.TextVisualizerDialogSettings, new TextVisualizerDialogSettings(SecretsWarningAcknowledged: true));
Components\Layout\MainLayout.razor.cs (2)
210_ => LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.UnsecuredEndpointMessageDismissedKey, true)); 513await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.NavMenuExpanded, _isNavMenuExpanded);
Components\Pages\ConsoleLogs.razor.cs (1)
830await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.ConsoleLogConsoleSettings, new ConsoleLogConsoleSettings(_showTimestamp, _isTimestampUtc, _noWrapLogs));