2 types derived from PersistedState
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\CategoryState.cs (1)
16internal class CategoryState : PersistedState
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\PropertyState.cs (1)
16internal class PropertyState : PersistedState
12 references to PersistedState
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\CategoryStateContainer.cs (2)
32protected override PersistedState CreateDefaultState(object key) 42protected override PersistedState DeserializeState(string serializedValue)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\PersistedStateContainer.cs (8)
18private readonly Dictionary<object, PersistedState> _persistedStates = new Dictionary<object, PersistedState>(); 26protected PersistedState GetState(object key) 28PersistedState state = null; 45protected abstract PersistedState CreateDefaultState(object key); 52protected abstract PersistedState DeserializeState(string serializedValue); 76PersistedState deserializedState = DeserializeState(stateString); 100foreach (PersistedState state in _persistedStates.Values)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\PropertyStateContainer.cs (2)
57protected override PersistedState CreateDefaultState(object key) 67protected override PersistedState DeserializeState(string serializedValue)