8 writes to RawValue
System.Net.Http (8)
System\Net\Http\Headers\HttpHeaders.cs (8)
155
storeValueRef = info = new HeaderStoreItemInfo() {
RawValue
= currentValue };
190
storeValueRef = info = new HeaderStoreItemInfo {
RawValue
= storeValue };
196
info.
RawValue
= rawValues = new List<string>();
402
info.
RawValue
= null;
612
RawValue
= CloneStringHeaderInfoValues(sourceInfo.RawValue)
755
var info = new HeaderStoreItemInfo() {
RawValue
= value };
792
info.
RawValue
= null;
948
AddValueToStoreValue<string>(value, ref info.
RawValue
);
9 references to RawValue
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
193
object? rawValue = info.
RawValue
;
612
RawValue = CloneStringHeaderInfoValues(sourceInfo.
RawValue
)
774
if (info.
RawValue
!= null)
776
if (info.
RawValue
is List<string> rawValues)
785
string? rawValue = info.
RawValue
as string;
1173
ReadStoreValues<string?>(values, info.
RawValue
, null, ref currentIndex);
1209
ReadStoreValues<string?>(values!, info.
RawValue
, null, ref currentIndex);
1221
return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.
RawValue
);
1362
public bool IsEmpty =>
RawValue
== null && ParsedAndInvalidValues == null;