9 writes to Value
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
27Value = value; 353? ref entries[i].Value 578entry.Value = CloneHeaderInfo(entry.Key, info); 1397Value = entry.Value 1424valueRef = ref entries[i].Value; 1446return ref entries[i].Value!; 1455return ref entries[count].Value!; 1467return ref firstEntry.Value!; 1487return ref firstNewEntry.Value!;
11 references to Value
System.Net.Http (11)
System\Net\Http\Headers\HttpHeaders.cs (7)
281GetStoreValuesAsStringOrStringArray(entry.Key, entry.Value, out string? singleValue, out string[]? multiValue); 344if (entry.Value is not HeaderStoreItemInfo info) 356info = ReplaceWithHeaderStoreItemInfo(ref storeValueRef, entry.Value); 576if (entry.Value is HeaderStoreItemInfo info) 590object sourceValue = entry.Value; 1498dictionary.Add(entry.Key, entry.Value); 1531GetValueRefOrAddDefault(entry.Key) = entry.Value;
System\Net\Http\Headers\HttpHeadersNonValidated.cs (1)
145HttpHeaders.GetStoreValuesAsStringOrStringArray(entry.Key, entry.Value, out string? singleValue, out string[]? multiValue);
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
1424int headerValuesCount = HttpHeaders.GetStoreValuesIntoStringArray(header.Key, header.Value, ref tmpHeaderValuesArray);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (1)
722int headerValuesCount = HttpHeaders.GetStoreValuesIntoStringArray(header.Key, header.Value, ref _headerValues);
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
436int headerValuesCount = HttpHeaders.GetStoreValuesIntoStringArray(header.Key, header.Value, ref headerValues);