10 implementations of GetEscapedValueIfPresent
Microsoft.Build (10)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (1)
739public string GetEscapedValueIfPresent(string specifiedItemType, string name)
Definition\ProjectItem.cs (2)
762string IMetadataTable.GetEscapedValueIfPresent(string itemType, string name) 1135public string GetEscapedValueIfPresent(string itemType, string name)
Definition\ProjectItemDefinition.cs (1)
234string IMetadataTable.GetEscapedValueIfPresent(string specifiedItemType, string name)
Evaluation\EvaluatorMetadataTable.cs (1)
65public string? GetEscapedValueIfPresent(string? itemType, string name)
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (1)
143public string GetEscapedValueIfPresent(string itemType, string name)
Evaluation\StringMetadataTable.cs (1)
58public string GetEscapedValueIfPresent(string itemType, string name)
Instance\ProjectItemDefinitionInstance.cs (1)
184string IMetadataTable.GetEscapedValueIfPresent(string specifiedItemType, string name)
Instance\ProjectItemInstance.cs (2)
585string IMetadataTable.GetEscapedValueIfPresent(string itemType, string name) 2508public string GetEscapedValueIfPresent(string requiredItemType, string name)
8 references to GetEscapedValueIfPresent
Microsoft.Build (8)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (2)
754value = _bucketTable.GetEscapedValueIfPresent(specifiedItemType, name); 764value = _itemDefinitionTable.GetEscapedValueIfPresent(specifiedItemType, name);
Definition\ProjectItem.cs (1)
751string value = ((IMetadataTable)this).GetEscapedValueIfPresent(itemType, name);
Definition\ProjectItemDefinition.cs (1)
225return ((IMetadataTable)this).GetEscapedValueIfPresent(specifiedItemType, name) ?? String.Empty;
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (1)
145return RouteCall(itemType, name, (t, it, n) => t.GetEscapedValueIfPresent(it, n));
Instance\ProjectItemDefinitionInstance.cs (1)
175return ((IMetadataTable)this).GetEscapedValueIfPresent(specifiedItemType, name) ?? String.Empty;
Instance\ProjectItemInstance.cs (2)
575string value = ((IMetadataTable)this).GetEscapedValueIfPresent(itemType, name); 2090string metadataValue = ((IMetadataTable)_itemDefinitions[i]).GetEscapedValueIfPresent(itemType: null, metadataName);