5 implementations of EscapedValue
Microsoft.Build (4)
Definition\ProjectMetadata.cs (1)
252
string IValued.
EscapedValue
Definition\ProjectProperty.cs (1)
240
string IValued.
EscapedValue
Instance\ProjectMetadataInstance.cs (1)
141
string IValued.
EscapedValue
Instance\ProjectPropertyInstance.cs (1)
140
string IValued.
EscapedValue
=> _escapedValue;
Microsoft.Build.Engine.UnitTests (1)
Collections\CopyOnWritePropertyDictionary_Tests.cs (1)
207
public string
EscapedValue
=> Key;
12 references to EscapedValue
Microsoft.Build (12)
BackEnd\BuildManager\GlobalPropertiesLookup.cs (1)
62
private static string? ExtractEscapedValue(ProjectPropertyInstance property) => ((IValued)property).
EscapedValue
;
Collections\CopyOnWritePropertyDictionary.cs (1)
122
return value?.
EscapedValue
;
Collections\PropertyDictionary.cs (2)
526
dictionary[property.Key] = property.
EscapedValue
;
539
yield 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)
45
escapedValue = item.
EscapedValue
;
Definition\ProjectCollection.cs (1)
1445
bool changed = propertyInGlobalProperties == null || !String.Equals(((IValued)propertyInGlobalProperties).
EscapedValue
, value, StringComparison.OrdinalIgnoreCase);
Evaluation\Evaluator.cs (1)
849
var pluginSettings = item.Metadata.ToDictionary(m => m.Key, m => m.
EscapedValue
);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
256
loggingContext.ProcessPropertyWrite(new PropertyWriteInfo(property.Name, string.IsNullOrEmpty(property.
EscapedValue
), location));
Instance\ImmutableProjectCollections\ImmutablePropertyCollectionConverter.cs (1)
25
return value?.
EscapedValue
;
Instance\ImmutableProjectCollections\ImmutableValuedElementCollectionConverter.cs (1)
29
escapedValue = value.
EscapedValue
;