8 writes to RawValue
System.Net.Http (8)
System\Net\Http\Headers\HttpHeaders.cs (8)
185storeValueRef = info = new HeaderStoreItemInfo() { RawValue = currentValue }; 220storeValueRef = info = new HeaderStoreItemInfo { RawValue = storeValue }; 226info.RawValue = rawValues = new List<string>(); 466info.RawValue = null; 695RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 838var info = new HeaderStoreItemInfo() { RawValue = value }; 875info.RawValue = null; 1031AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
223object? rawValue = info.RawValue; 695RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 857if (info.RawValue != null) 859if (info.RawValue is List<string> rawValues) 868string? rawValue = info.RawValue as string; 1253ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1289ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1301return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1442public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;