5 implementations of EscapedValue
Microsoft.Build (4)
Definition\ProjectMetadata.cs (1)
252string IValued.EscapedValue
Definition\ProjectProperty.cs (1)
240string IValued.EscapedValue
Instance\ProjectMetadataInstance.cs (1)
141string IValued.EscapedValue
Instance\ProjectPropertyInstance.cs (1)
140string IValued.EscapedValue => _escapedValue;
Microsoft.Build.Engine.UnitTests (1)
Collections\CopyOnWritePropertyDictionary_Tests.cs (1)
207public string EscapedValue => Key;
12 references to EscapedValue
Microsoft.Build (12)
BackEnd\BuildManager\GlobalPropertiesLookup.cs (1)
62private static string? ExtractEscapedValue(ProjectPropertyInstance property) => ((IValued)property).EscapedValue;
Collections\CopyOnWritePropertyDictionary.cs (1)
122return value?.EscapedValue;
Collections\PropertyDictionary.cs (2)
526dictionary[property.Key] = property.EscapedValue; 539yield return new(kvp.Key, EscapingUtilities.UnescapeAll(kvp.EscapedValue));
Collections\RetrievableEntryHashSet\IRetrievableValuedEntryHashSet.cs (2)
27/// Gets the <see cref="IValued.EscapedValue"/> of the item whose <see cref="IKeyed.Key"/> matches <paramref name="key"/>. 30/// <param name="escapedValue">The out parameter by which a successfully retrieved <see cref="IValued.EscapedValue"/> is returned.</param>
Collections\RetrievableEntryHashSet\RetrievableValuedEntryHashSet.cs (1)
45escapedValue = item.EscapedValue;
Definition\ProjectCollection.cs (1)
1445bool changed = propertyInGlobalProperties == null || !String.Equals(((IValued)propertyInGlobalProperties).EscapedValue, value, StringComparison.OrdinalIgnoreCase);
Evaluation\Evaluator.cs (1)
849var pluginSettings = item.Metadata.ToDictionary(m => m.Key, m => m.EscapedValue);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
256loggingContext.ProcessPropertyWrite(new PropertyWriteInfo(property.Name, string.IsNullOrEmpty(property.EscapedValue), location));
Instance\ImmutableProjectCollections\ImmutablePropertyCollectionConverter.cs (1)
25return value?.EscapedValue;
Instance\ImmutableProjectCollections\ImmutableValuedElementCollectionConverter.cs (1)
29escapedValue = value.EscapedValue;