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; 691RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 834var info = new HeaderStoreItemInfo() { RawValue = value }; 871info.RawValue = null; 1027AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
223object? rawValue = info.RawValue; 691RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 853if (info.RawValue != null) 855if (info.RawValue is List<string> rawValues) 864string? rawValue = info.RawValue as string; 1249ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1285ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1297return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1438public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;