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