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>(); 401info.RawValue = null; 611RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 754var info = new HeaderStoreItemInfo() { RawValue = value }; 791info.RawValue = null; 947AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
193object? rawValue = info.RawValue; 611RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 773if (info.RawValue != null) 775if (info.RawValue is List<string> rawValues) 784string? rawValue = info.RawValue as string; 1172ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1208ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1220return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1361public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;