10 implementations of GetEscapedValueIfPresent
Microsoft.Build (10)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (1)
708
public string
GetEscapedValueIfPresent
(string specifiedItemType, string name)
Definition\ProjectItem.cs (2)
762
string IMetadataTable.
GetEscapedValueIfPresent
(string itemType, string name)
1135
public string
GetEscapedValueIfPresent
(string itemType, string name)
Definition\ProjectItemDefinition.cs (1)
235
string IMetadataTable.
GetEscapedValueIfPresent
(string specifiedItemType, string name)
Evaluation\EvaluatorMetadataTable.cs (1)
72
public string?
GetEscapedValueIfPresent
(string? itemType, string name)
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (1)
143
public string
GetEscapedValueIfPresent
(string itemType, string name)
Evaluation\StringMetadataTable.cs (1)
58
public string
GetEscapedValueIfPresent
(string itemType, string name)
Instance\ProjectItemDefinitionInstance.cs (1)
176
string IMetadataTable.
GetEscapedValueIfPresent
(string specifiedItemType, string name)
Instance\ProjectItemInstance.cs (2)
570
string IMetadataTable.
GetEscapedValueIfPresent
(string itemType, string name)
2284
public string
GetEscapedValueIfPresent
(string requiredItemType, string name)
7 references to GetEscapedValueIfPresent
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (2)
723
value = _bucketTable.
GetEscapedValueIfPresent
(specifiedItemType, name);
733
value = _itemDefinitionTable.
GetEscapedValueIfPresent
(specifiedItemType, name);
Definition\ProjectItem.cs (1)
751
string value = ((IMetadataTable)this).
GetEscapedValueIfPresent
(itemType, name);
Definition\ProjectItemDefinition.cs (1)
226
return ((IMetadataTable)this).
GetEscapedValueIfPresent
(specifiedItemType, name) ?? String.Empty;
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (1)
145
return RouteCall(itemType, name, (t, it, n) => t.
GetEscapedValueIfPresent
(it, n));
Instance\ProjectItemDefinitionInstance.cs (1)
167
return ((IMetadataTable)this).
GetEscapedValueIfPresent
(specifiedItemType, name) ?? String.Empty;
Instance\ProjectItemInstance.cs (1)
560
string value = ((IMetadataTable)this).
GetEscapedValueIfPresent
(itemType, name);