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