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