Skip to content

Commit 307e529

Browse files
authored
Mention default value for HttpClientHandler.MaxConnectionsPerServer (dotnet#8457)
1 parent a146692 commit 307e529

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

xml/System.Net.Http/HttpClientHandler.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,14 @@ handler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousA
665665
<Docs>
666666
<summary>Gets or sets the maximum number of concurrent connections (per server endpoint) allowed when making requests using an <see cref="T:System.Net.Http.HttpClient" /> object. Note that the limit is per server endpoint, so for example a value of 256 would permit 256 concurrent connections to http://www.adatum.com/ and another 256 to http://www.adventure-works.com/.</summary>
667667
<value>The maximum number of concurrent connections (per server endpoint) allowed by an <see cref="T:System.Net.Http.HttpClient" /> object.</value>
668-
<remarks>To be added.</remarks>
668+
<remarks>
669+
<format type="text/markdown"><![CDATA[
670+
671+
## Remarks
672+
The default value for this property is `int.MaxValue`.
673+
674+
]]></format>
675+
</remarks>
669676
</Docs>
670677
</Member>
671678
<Member MemberName="MaxRequestContentBufferSize">

xml/System.Net.Http/WinHttpHandler.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ When this property is set to `true`, all HTTP redirect responses from the server
503503
<format type="text/markdown"><![CDATA[
504504
505505
## Remarks
506-
The default value for this property is int.MaxValue.
506+
The default value for this property is `int.MaxValue`.
507507
508508
]]></format>
509509
</remarks>

0 commit comments

Comments
 (0)