6 writes to ParsedAndInvalidValues
System.Net.Http (6)
System\Net\Http\Headers\HttpHeaders.cs (6)
400info.ParsedAndInvalidValues = null; 452info.ParsedAndInvalidValues = null; 481info.ParsedAndInvalidValues = null; 617destinationInfo.ParsedAndInvalidValues = CloneStringHeaderInfoValues(sourceInfo.ParsedAndInvalidValues); 937AddValueToStoreValue<object>(value, ref info.ParsedAndInvalidValues); 942AddValueToStoreValue<object>(new InvalidValue(value), ref info.ParsedAndInvalidValues);
29 references to ParsedAndInvalidValues
System.Net.Http (29)
System\Net\Http\Headers\HttpHeaders.cs (29)
89if (addToStore && (info.ParsedAndInvalidValues != null)) 121if (addToStore && (info.ParsedAndInvalidValues != null)) 433var parsedValue = info.ParsedAndInvalidValues; 511var parsedValue = info.ParsedAndInvalidValues; 617destinationInfo.ParsedAndInvalidValues = CloneStringHeaderInfoValues(sourceInfo.ParsedAndInvalidValues); 622if (sourceInfo.ParsedAndInvalidValues != null) 624List<object>? sourceValues = sourceInfo.ParsedAndInvalidValues as List<object>; 627CloneAndAddValue(destinationInfo, sourceInfo.ParsedAndInvalidValues); 790Debug.Assert(info.ParsedAndInvalidValues is not null); 832if (result && addToStore && (info.ParsedAndInvalidValues != null)) 865if (descriptor.Parser.TryParseValue(value, info.ParsedAndInvalidValues, ref index, out object? parsedValue)) 874else if (addWhenInvalid && info.ParsedAndInvalidValues is null) 892if (descriptor.Parser.TryParseValue(value, info.ParsedAndInvalidValues, ref index, out parsedValue)) 915if (parsedValues.Count == 0 && addWhenInvalid && info.ParsedAndInvalidValues is null) 992return info.ParsedAndInvalidValues; 1033object parsedValue = descriptor.Parser.ParseValue(value, info.ParsedAndInvalidValues, ref index); 1060parsedValue = descriptor.Parser.ParseValue(value, info.ParsedAndInvalidValues, ref index); 1171ReadStoreValues<object?>(values, info.ParsedAndInvalidValues, descriptor.Parser, ref currentIndex); 1207ReadStoreValues<object?>(values!, info.ParsedAndInvalidValues, descriptor.Parser, ref currentIndex); 1220return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1297return parser.SupportsMultipleValues || ParsedAndInvalidValues is null; 1303if (ParsedAndInvalidValues is not null) 1305if (ParsedAndInvalidValues is List<object> list) 1314Debug.Assert(ParsedAndInvalidValues is not InvalidValue); 1321if (ParsedAndInvalidValues is not null) 1323if (ParsedAndInvalidValues is List<object> list) 1336if (ParsedAndInvalidValues is not InvalidValue) 1338return ParsedAndInvalidValues; 1361public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;