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>(); 464info.RawValue = null; 674RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 817var info = new HeaderStoreItemInfo() { RawValue = value }; 854info.RawValue = null; 1010AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
223object? rawValue = info.RawValue; 674RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 836if (info.RawValue != null) 838if (info.RawValue is List<string> rawValues) 847string? rawValue = info.RawValue as string; 1232ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1268ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1280return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1421public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;