We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468cf3d commit b3aee48Copy full SHA for b3aee48
src/libraries/System.Net.Http/src/System/Net/Http/Headers/HttpHeaders.cs
@@ -11,7 +11,10 @@
11
12
namespace System.Net.Http.Headers
13
{
14
- /// <summary>Key/value pairs of headers. The value is either a raw <see cref="string"/> or a <see cref="HttpHeaders.HeaderStoreItemInfo"/>.</summary>
+ /// <summary>
15
+ /// Key/value pairs of headers. The value is either a raw <see cref="string"/> or a <see cref="HttpHeaders.HeaderStoreItemInfo"/>.
16
+ /// We're using a custom type instead of <see cref="KeyValuePair{TKey, TValue}"/> because we need ref access to fields.
17
+ /// </summary>
18
internal struct HeaderEntry
19
20
public HeaderDescriptor Key;
0 commit comments