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