7 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 (1)
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
55public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state)
Microsoft.AspNetCore.Components.Tests (2)
Lifetime\ComponentStatePersistenceManagerTest.cs (2)
272public Task PersistStateAsync(IReadOnlyDictionary<string, byte[]> state) 300public 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)
Infrastructure\ComponentStatePersistenceManager.cs (1)
91await store.PersistStateAsync(_currentState);