10 references to ValueUpdate
Microsoft.AspNetCore.Components (1)
PersistentState\ComponentStatePersistenceManager.cs (1)
76if (context != RestoreContext.ValueUpdate)
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitHost.cs (2)
801(_, false) => RestoreContext.ValueUpdate, 805if (context == RestoreContext.ValueUpdate)
Microsoft.AspNetCore.Components.Tests (6)
PersistentState\ComponentStatePersistenceManagerTest.cs (2)
396await persistenceManager.RestoreStateAsync(store, RestoreContext.ValueUpdate); 445yield return new object[] { RestoreContext.ValueUpdate };
PersistentState\PersistentServicesRegistryTest.cs (1)
521await targetManager.RestoreStateAsync(new TestStore(updatedStore.State), RestoreContext.ValueUpdate);
PersistentState\RestoreContextTest.cs (2)
88var result = RestoreContext.ValueUpdate.ShouldRestore(options); 101var result = RestoreContext.ValueUpdate.ShouldRestore(options);
PersistentValueProviderComponentSubscriptionTests.cs (1)
281await renderer.Dispatcher.InvokeAsync(() => manager.RestoreStateAsync(new TestStore(newState), RestoreContext.ValueUpdate));
Microsoft.AspNetCore.Components.WebAssembly (1)
Rendering\WebAssemblyRenderer.cs (1)
102await componentStatePersistenceManager.RestoreStateAsync(store, RestoreContext.ValueUpdate);