5 implementations of GetPersistedStateAsync
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.PrerenderingState.cs (2)
256
public Task<IDictionary<string, byte[]>>
GetPersistedStateAsync
() => throw new NotImplementedException();
267
public Task<IDictionary<string, byte[]>>
GetPersistedStateAsync
() => throw new NotImplementedException();
src\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
46
public Task<IDictionary<string, byte[]>>
GetPersistedStateAsync
()
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitPersistenceManager.cs (1)
237
Task<IDictionary<string, byte[]>> IPersistentComponentStateStore.
GetPersistedStateAsync
() => throw new NotImplementedException();
src\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
46
public Task<IDictionary<string, byte[]>>
GetPersistedStateAsync
()
1 reference to GetPersistedStateAsync
Microsoft.AspNetCore.Components (1)
PersistentState\ComponentStatePersistenceManager.cs (1)
72
var data = await store.
GetPersistedStateAsync
();