9 writes to Value
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
27Value = value; 416? ref entries[i].Value 640entry.Value = CloneHeaderInfo(entry.Key, info); 1456Value = entry.Value 1483valueRef = ref entries[i].Value; 1505return ref entries[i].Value!; 1514return ref entries[count].Value!; 1526return ref firstEntry.Value!; 1546return ref firstNewEntry.Value!;
12 references to Value
System.Net.Http (12)
System\Net\Http\Headers\HttpHeaders.cs (8)
338GetStoreValuesAsStringOrStringArray(entry.Key, entry.Value, out string? singleValue, out string[]? multiValue); 401if (entry.Value is not HeaderStoreItemInfo info) 407yield return new KeyValuePair<string, IEnumerable<string>>(entry.Key.Name, new string[] { (string)entry.Value }); 419info = ReplaceWithHeaderStoreItemInfo(ref storeValueRef, entry.Value); 638if (entry.Value is HeaderStoreItemInfo info) 652object sourceValue = entry.Value; 1557dictionary.Add(entry.Key, entry.Value); 1590GetValueRefOrAddDefault(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)
1438int headerValuesCount = HttpHeaders.GetStoreValuesIntoStringArray(header.Key, header.Value, ref tmpHeaderValuesArray);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (1)
784int 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);