9 writes to Value
System.Net.Http (9)
System\Net\Http\Headers\HttpHeaders.cs (9)
27Value = value; 416? ref entries[i].Value 657entry.Value = CloneHeaderInfo(entry.Key, info); 1473Value = entry.Value 1500valueRef = ref entries[i].Value; 1522return ref entries[i].Value!; 1531return ref entries[count].Value!; 1542return ref entries[0].Value!; 1562return 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); 655if (entry.Value is HeaderStoreItemInfo info) 669object sourceValue = entry.Value; 1573dictionary.Add(entry.Key, entry.Value); 1606GetValueRefOrAddDefault(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);