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>();
466
info.
RawValue
= null;
695
RawValue
= CloneStringHeaderInfoValues(sourceInfo.RawValue)
838
var info = new HeaderStoreItemInfo() {
RawValue
= value };
875
info.
RawValue
= null;
1031
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
;
695
RawValue = CloneStringHeaderInfoValues(sourceInfo.
RawValue
)
857
if (info.
RawValue
!= null)
859
if (info.
RawValue
is List<string> rawValues)
868
string? rawValue = info.
RawValue
as string;
1253
ReadStoreValues<string?>(values, info.
RawValue
, null, ref currentIndex);
1289
ReadStoreValues<string?>(values!, info.
RawValue
, null, ref currentIndex);
1301
return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.
RawValue
);
1442
public bool IsEmpty =>
RawValue
== null && ParsedAndInvalidValues == null;