11 implementations of PersistStateAsync
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.PrerenderingState.cs (2)
258public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state) => Task.CompletedTask; 269public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
55public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitPersistenceManager.cs (1)
221Task IPersistentComponentStateStore.PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
55public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\CircuitPersistenceManagerTest.cs (1)
655Task IPersistentComponentStateStore.PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.Tests (4)
PersistentState\ComponentStatePersistenceManagerTest.cs (2)
384public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state) 408public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
PersistentState\PersistentServicesRegistryTest.cs (1)
294public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
SupplyParameterFromPersistentComponentStateValueProviderTests.cs (1)
681public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
55public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
1 reference to PersistStateAsync
Microsoft.AspNetCore.Components (1)
PersistentState\ComponentStatePersistenceManager.cs (1)
122await store.PersistStateAsync(_currentState);