6 writes to ParsedAndInvalidValues
System.Net.Http (6)
System\Net\Http\Headers\HttpHeaders.cs (6)
401info.ParsedAndInvalidValues = null; 453info.ParsedAndInvalidValues = null; 482info.ParsedAndInvalidValues = null; 618destinationInfo.ParsedAndInvalidValues = CloneStringHeaderInfoValues(sourceInfo.ParsedAndInvalidValues); 938AddValueToStoreValue<object>(value, ref info.ParsedAndInvalidValues); 943AddValueToStoreValue<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)) 434var parsedValue = info.ParsedAndInvalidValues; 512var parsedValue = info.ParsedAndInvalidValues; 618destinationInfo.ParsedAndInvalidValues = CloneStringHeaderInfoValues(sourceInfo.ParsedAndInvalidValues); 623if (sourceInfo.ParsedAndInvalidValues != null) 625List<object>? sourceValues = sourceInfo.ParsedAndInvalidValues as List<object>; 628CloneAndAddValue(destinationInfo, sourceInfo.ParsedAndInvalidValues); 791Debug.Assert(info.ParsedAndInvalidValues is not null); 833if (result && addToStore && (info.ParsedAndInvalidValues != null)) 866if (descriptor.Parser.TryParseValue(value, info.ParsedAndInvalidValues, ref index, out object? parsedValue)) 875else if (addWhenInvalid && info.ParsedAndInvalidValues is null) 893if (descriptor.Parser.TryParseValue(value, info.ParsedAndInvalidValues, ref index, out parsedValue)) 916if (parsedValues.Count == 0 && addWhenInvalid && info.ParsedAndInvalidValues is null) 993return info.ParsedAndInvalidValues; 1034object parsedValue = descriptor.Parser.ParseValue(value, info.ParsedAndInvalidValues, ref index); 1061parsedValue = descriptor.Parser.ParseValue(value, info.ParsedAndInvalidValues, ref index); 1172ReadStoreValues<object?>(values, info.ParsedAndInvalidValues, descriptor.Parser, ref currentIndex); 1208ReadStoreValues<object?>(values!, info.ParsedAndInvalidValues, descriptor.Parser, ref currentIndex); 1221return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1298return parser.SupportsMultipleValues || ParsedAndInvalidValues is null; 1304if (ParsedAndInvalidValues is not null) 1306if (ParsedAndInvalidValues is List<object> list) 1315Debug.Assert(ParsedAndInvalidValues is not InvalidValue); 1322if (ParsedAndInvalidValues is not null) 1324if (ParsedAndInvalidValues is List<object> list) 1337if (ParsedAndInvalidValues is not InvalidValue) 1339return ParsedAndInvalidValues; 1362public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;