You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Limits the number of concurrent request streams per HTTP/2 connection. Excess streams will be refused.
26
26
/// <para>
27
-
/// Value must be greater than 0, defaults to 100.
27
+
/// Value must be greater than 0, defaults to 100 streams.
28
28
/// </para>
29
29
/// </summary>
30
30
publicintMaxStreamsPerConnection
@@ -44,7 +44,7 @@ public int MaxStreamsPerConnection
44
44
/// <summary>
45
45
/// Limits the size of the header compression tables, in octets, the HPACK encoder and decoder on the server can use.
46
46
/// <para>
47
-
/// Value must be greater than or equal to 0, defaults to 4096.
47
+
/// Value must be greater than or equal to 0, defaults to 4096 octets (4 KiB).
48
48
/// </para>
49
49
/// </summary>
50
50
publicintHeaderTableSize
@@ -64,7 +64,7 @@ public int HeaderTableSize
64
64
/// <summary>
65
65
/// Indicates the size of the largest frame payload that is allowed to be received, in octets. The size must be between 2^14 and 2^24-1.
66
66
/// <para>
67
-
/// Value must be between 2^14 and 2^24, defaults to 2^14 (16,384).
67
+
/// Value must be between 2^14 and 2^24, defaults to 2^14 octets (16 KiB).
68
68
/// </para>
69
69
/// </summary>
70
70
publicintMaxFrameSize
@@ -82,9 +82,9 @@ public int MaxFrameSize
82
82
}
83
83
84
84
/// <summary>
85
-
/// Indicates the size of the maximum allowed size of a request header field sequence. This limit applies to both name and value sequences in their compressed and uncompressed representations.
85
+
/// Indicates the size of the maximum allowed size of a request header field sequence, in octets. This limit applies to both name and value sequences in their compressed and uncompressed representations.
86
86
/// <para>
87
-
/// Value must be greater than 0, defaults to 2^14 (16,384).
87
+
/// Value must be greater than 0, defaults to 2^14 octets (16 KiB).
88
88
/// </para>
89
89
/// </summary>
90
90
publicintMaxRequestHeaderFieldSize
@@ -102,10 +102,10 @@ public int MaxRequestHeaderFieldSize
102
102
}
103
103
104
104
/// <summary>
105
-
/// Indicates how much request body data the server is willing to receive and buffer at a time aggregated across all
105
+
/// Indicates how much request body data, in bytes, the server is willing to receive and buffer at a time aggregated across all
106
106
/// requests (streams) per connection. Note requests are also limited by <see cref="InitialStreamWindowSize"/>
107
107
/// <para>
108
-
/// Value must be greater than or equal to 65,535 and less than 2^31, defaults to 128 kb.
108
+
/// Value must be greater than or equal to 64 KiB and less than 2 GiB, defaults to 1 MiB.
109
109
/// </para>
110
110
/// </summary>
111
111
publicintInitialConnectionWindowSize
@@ -124,10 +124,11 @@ public int InitialConnectionWindowSize
124
124
}
125
125
126
126
/// <summary>
127
-
/// Indicates how much request body data the server is willing to receive and buffer at a time per stream.
128
-
/// Note connections are also limited by <see cref="InitialConnectionWindowSize"/>
127
+
/// Indicates how much request body data, in bytes, the server is willing to receive and buffer at a time per stream.
128
+
/// Note connections are also limited by <see cref="InitialConnectionWindowSize"/>. There must be space in both the stream
129
+
/// window and connection window for a client to upload request body data.
129
130
/// <para>
130
-
/// Value must be greater than or equal to 65,535 and less than 2^31, defaults to 96 kb.
131
+
/// Value must be greater than or equal to 64 KiB and less than 2 GiB, defaults to 768 KiB.
0 commit comments