4 writes to _value
System.Net.Http (4)
System\Net\Http\Headers\NameValueHeaderValue.cs (4)
31
_value
= value;
49
_value
= value;
57
_value
= source._value;
257
parsedValue.
_value
= input.Substring(current, valueLength);
17 references to _value
System.Net.Http (17)
System\Net\Http\Headers\NameValueHeaderValue.cs (17)
27
get { return
_value
; }
57
_value = source.
_value
;
66
if (!string.IsNullOrEmpty(
_value
))
70
if (
_value
[0] == '"')
72
return nameHashCode ^
_value
.GetHashCode();
75
return nameHashCode ^ StringComparer.OrdinalIgnoreCase.GetHashCode(
_value
);
99
if (string.IsNullOrEmpty(
_value
))
101
return string.IsNullOrEmpty(other.
_value
);
104
if (
_value
[0] == '"')
107
return string.Equals(
_value
, other.
_value
, StringComparison.Ordinal);
111
return string.Equals(
_value
, other.
_value
, StringComparison.OrdinalIgnoreCase);
137
if (!string.IsNullOrEmpty(
_value
))
139
return _name + "=" +
_value
;
157
if (!string.IsNullOrEmpty(
_value
))
160
sb.Append(
_value
);