5 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\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
55public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitPersistenceManager.cs (1)
243Task IPersistentComponentStateStore.PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
src\aspnetcore\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)
149await store.PersistStateAsync(_currentState);