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>(); 409info.RawValue = null; 619RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 762var info = new HeaderStoreItemInfo() { RawValue = value }; 799info.RawValue = null; 955AddValueToStoreValue<string>(value, ref info.RawValue);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
193object? rawValue = info.RawValue; 619RawValue = CloneStringHeaderInfoValues(sourceInfo.RawValue) 781if (info.RawValue != null) 783if (info.RawValue is List<string> rawValues) 792string? rawValue = info.RawValue as string; 1180ReadStoreValues<string?>(values, info.RawValue, null, ref currentIndex); 1216ReadStoreValues<string?>(values!, info.RawValue, null, ref currentIndex); 1228return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.RawValue); 1369public bool IsEmpty => RawValue == null && ParsedAndInvalidValues == null;