9 writes to Value
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
27Value = value; 361? ref entries[i].Value 585entry.Value = CloneHeaderInfo(entry.Key, info); 1404Value = entry.Value 1431valueRef = ref entries[i].Value; 1453return ref entries[i].Value!; 1462return ref entries[count].Value!; 1474return ref firstEntry.Value!; 1494return ref firstNewEntry.Value!;
11 references to Value
System.Net.Http (11)
System\Net\Http\Headers\HttpHeaders.cs (7)
291GetStoreValuesAsStringOrStringArray(entry.Key, entry.Value, out string? singleValue, out string[]? multiValue); 354if (entry.Value is not HeaderStoreItemInfo info) 364info = ReplaceWithHeaderStoreItemInfo(ref storeValueRef, entry.Value); 583if (entry.Value is HeaderStoreItemInfo info) 597object sourceValue = entry.Value; 1505dictionary.Add(entry.Key, entry.Value); 1538GetValueRefOrAddDefault(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)
1437int headerValuesCount = HttpHeaders.GetStoreValuesIntoStringArray(header.Key, header.Value, ref tmpHeaderValuesArray);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (1)
730int 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);