3 implementations of TryGetEscapedValue
Microsoft.Build (3)
Collections\RetrievableEntryHashSet\RetrievableValuedEntryHashSet.cs (1)
40
public bool
TryGetEscapedValue
(string key, out string escapedValue)
Instance\ImmutableProjectCollections\ImmutableGlobalPropertiesCollectionConverter.cs (1)
139
public bool
TryGetEscapedValue
(string key, out string escapedValue) => _globalProperties.TryGetValue(key, out escapedValue);
Instance\ImmutableProjectCollections\ImmutableProjectPropertyCollectionConverter.cs (1)
33
public bool
TryGetEscapedValue
(string key, out string escapedValue)
1 reference to TryGetEscapedValue
Microsoft.Build (1)
Collections\PropertyDictionary.cs (1)
354
if (_properties.
TryGetEscapedValue
(propertyName, out string escapedValue) && escapedValue != null)