13 implementations of GetPersistedStateAsync
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.PrerenderingState.cs (2)
256public Task<IDictionary<string, byte[]>> GetPersistedStateAsync() => throw new NotImplementedException(); 267public Task<IDictionary<string, byte[]>> GetPersistedStateAsync() => throw new NotImplementedException();
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
46public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitPersistenceManager.cs (1)
218Task<IDictionary<string, byte[]>> IPersistentComponentStateStore.GetPersistedStateAsync() => throw new NotImplementedException();
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
46public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
Microsoft.AspNetCore.Components.Server.Tests (2)
Circuits\CircuitHostTest.cs (1)
1153public async Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
Circuits\CircuitPersistenceManagerTest.cs (1)
654Task<IDictionary<string, byte[]>> IPersistentComponentStateStore.GetPersistedStateAsync() =>
Microsoft.AspNetCore.Components.Tests (5)
PersistentState\ComponentStatePersistenceManagerTest.cs (2)
480public Task<IDictionary<string, byte[]>> GetPersistedStateAsync() 504public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
PersistentState\PersistentServicesRegistryTest.cs (1)
296public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
PersistentStateValueProviderKeyResolverTests.cs (1)
410public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
PersistentValueProviderComponentSubscriptionTests.cs (1)
623public Task<IDictionary<string, byte[]>> GetPersistedStateAsync() => Task.FromResult(state);
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
46public Task<IDictionary<string, byte[]>> GetPersistedStateAsync()
1 reference to GetPersistedStateAsync
Microsoft.AspNetCore.Components (1)
PersistentState\ComponentStatePersistenceManager.cs (1)
72var data = await store.GetPersistedStateAsync();