8 writes to RawValue
System.Net.Http (8)
System\Net\Http\Headers\HttpHeaders.cs (8)
155storeValueRef = info = new HeaderStoreItemInfo() { RawValue = currentValue }; 190storeValueRef = info = new HeaderStoreItemInfo { RawValue = storeValue }; 196info.RawValue = rawValues = new List<string>(); 402info.RawValue = null; 612RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 755var info = new HeaderStoreItemInfo() { RawValue = value }; 792info.RawValue = null; 948AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
193object? rawValue = info.RawValue; 612RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 774if (info.RawValue != null) 776if (info.RawValue is List<string> rawValues) 785string? rawValue = info.RawValue as string; 1173ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1209ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1221return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1362public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;