15 references to PersistedStateUtilities
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\CategoryContainerSelectionPathInterpreter.cs (2)
42StringBuilder path = new StringBuilder(PersistedStateUtilities.Escape(categoryName)); 69string categoryName = PersistedStateUtilities.Unescape(pathValues[0]);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\PropertySelectionPathInterpreter.cs (2)
79PropertyEntry currentProperty = root.FindPropertyEntry(PersistedStateUtilities.Unescape(pathValues[0]), out parentCategory); 102PropertyEntry property = subPropertyEditor.FindSubPropertyEntry(PersistedStateUtilities.Unescape(pathValues[pathIndex]));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\CategoryState.cs (6)
83PersistedStateUtilities.Escape(_categoryName), 85PersistedStateUtilities.BoolToDigit(_categoryExpanded), 87PersistedStateUtilities.BoolToDigit(_advancedSectionExpanded)); 103bool? categoryExpanded = PersistedStateUtilities.DigitToBool(args[1]); 104bool? advancedSectionExpanded = PersistedStateUtilities.DigitToBool(args[2]); 110string categoryName = PersistedStateUtilities.Unescape(args[0]);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\PropertyState.cs (4)
71PersistedStateUtilities.Escape(_propertyName), 73PersistedStateUtilities.BoolToDigit(_subPropertiesExpanded)); 89bool? subPropertiesExpanded = PersistedStateUtilities.DigitToBool(args[1]); 95string propertyName = PersistedStateUtilities.Unescape(args[0]);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\State\PropertyViewManagerStateContainer.cs (1)
129sb.Append(PersistedStateUtilities.Escape(pair.Key));