3 writes to _escapedValue
Microsoft.Build (3)
Instance\ProjectPropertyInstance.cs (3)
47
_escapedValue
= escapedValue;
78
_escapedValue
= EscapingUtilities.Escape(value);
177
translator.Translate(ref
_escapedValue
);
11 references to _escapedValue
Microsoft.Build (11)
Instance\ProjectPropertyInstance.cs (11)
70
return EscapingUtilities.UnescapeAll(
_escapedValue
);
104
EnvironmentVariableReadEventArgs args = new(Name,
_escapedValue
, string.Empty, 0, 0);
110
return
_escapedValue
;
118
EnvironmentVariableReadEventArgs args = new(Name,
_escapedValue
, location.File, location.Line, location.Column);
127
return
_escapedValue
;
140
string IValued.EscapedValue =>
_escapedValue
;
162
return
_escapedValue
== other.
_escapedValue
&& String.Equals(_name, other._name, StringComparison.OrdinalIgnoreCase);
189
return _name + "=" +
_escapedValue
;
256
return Create(that._name, that.
_escapedValue
, mayBeReserved: true /* already validated */, isImmutable: that.IsImmutable, that is EnvironmentDerivedProjectPropertyInstance);
265
return Create(that._name, that.
_escapedValue
, mayBeReserved: true /* already validated */, isImmutable: isImmutable, that is EnvironmentDerivedProjectPropertyInstance);