3 writes to _state
BasicTestApp (3)
PreserveStateService.cs (3)
29_state = state; 33_state = new ServiceState { TheState = Guid.NewGuid() }; 37public void NewState() => _state = new ServiceState { TheState = Guid.NewGuid() };
2 references to _state
BasicTestApp (2)
PreserveStateService.cs (2)
23public Guid Guid => _state.TheState; 41_componentApplicationState.PersistAsJson("Service", _state);