9 writes to Value
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
27Value = value; 353? ref entries[i].Value 577entry.Value = CloneHeaderInfo(entry.Key, info); 1396Value = entry.Value 1423valueRef = ref entries[i].Value; 1445return ref entries[i].Value!; 1454return ref entries[count].Value!; 1466return ref firstEntry.Value!; 1486return 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); 346if (entry.Value is not HeaderStoreItemInfo info) 356info = ReplaceWithHeaderStoreItemInfo(ref storeValueRef, entry.Value); 575if (entry.Value is HeaderStoreItemInfo info) 589object sourceValue = entry.Value; 1497dictionary.Add(entry.Key, entry.Value); 1530GetValueRefOrAddDefault(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);