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;
691
RawValue
= CloneStringHeaderInfoValues(sourceInfo.RawValue)
834
var info = new HeaderStoreItemInfo() {
RawValue
= value };
871
info.
RawValue
= null;
1027
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
;
691
RawValue = CloneStringHeaderInfoValues(sourceInfo.
RawValue
)
853
if (info.
RawValue
!= null)
855
if (info.
RawValue
is List<string> rawValues)
864
string? rawValue = info.
RawValue
as string;
1249
ReadStoreValues<string?>(values, info.
RawValue
, null, ref currentIndex);
1285
ReadStoreValues<string?>(values!, info.
RawValue
, null, ref currentIndex);
1297
return Count<object>(info.ParsedAndInvalidValues) + Count<string>(info.
RawValue
);
1438
public bool IsEmpty =>
RawValue
== null && ParsedAndInvalidValues == null;