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