Skip to content

Commit 08da320

Browse files
authored
Mention default HttpCompletionOption value in remarks (#8469)
1 parent 7e5768c commit 08da320

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xml/System.Net.Http/HttpClient.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ The <paramref name="requestUri" /> is not an absolute URI.
995995
<format type="text/markdown"><![CDATA[
996996
997997
## Remarks
998-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read.
998+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
999999
10001000
> [!NOTE]
10011001
> In case of timeout, different exceptions are thrown on different .NET implementations.
@@ -1050,7 +1050,7 @@ The <paramref name="requestUri" /> is not an absolute URI.
10501050
<format type="text/markdown"><![CDATA[
10511051
10521052
## Remarks
1053-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read.
1053+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
10541054
10551055
> [!NOTE]
10561056
> In case of timeout, different exceptions are thrown on different .NET implementations.
@@ -1177,7 +1177,7 @@ The <paramref name="requestUri" /> is not an absolute URI.
11771177
<format type="text/markdown"><![CDATA[
11781178
11791179
## Remarks
1180-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read.
1180+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
11811181
11821182
> [!NOTE]
11831183
> In case of timeout, different exceptions are thrown on different .NET implementations.
@@ -1290,7 +1290,7 @@ The <paramref name="requestUri" /> is not an absolute URI.
12901290
<format type="text/markdown"><![CDATA[
12911291
12921292
## Remarks
1293-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read.
1293+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete after the whole response (including content) is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
12941294
12951295
> [!NOTE]
12961296
> In case of timeout, different exceptions are thrown on different .NET implementations.
@@ -3224,7 +3224,7 @@ The custom <see cref="T:System.Net.Http.HttpMessageHandler" /> does not override
32243224
<format type="text/markdown"><![CDATA[
32253225
32263226
## Remarks
3227-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete once the entire response including content is read.
3227+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete once the entire response including content is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
32283228
32293229
> [!NOTE]
32303230
> In case of timeout, different exceptions are thrown on different .NET implementations.
@@ -3336,7 +3336,7 @@ The custom <see cref="T:System.Net.Http.HttpMessageHandler" /> does not override
33363336
<format type="text/markdown"><![CDATA[
33373337
33383338
## Remarks
3339-
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete once the entire response including content is read.
3339+
This operation will not block. The returned <xref:System.Threading.Tasks.Task%601> object will complete once the entire response including content is read. The behavior is the same as if <xref:System.Net.Http.HttpCompletionOption.ResponseContentRead> has been explicitly specified.
33403340
33413341
> [!NOTE]
33423342
> In case of timeout, different exceptions are thrown on different .NET implementations.

0 commit comments

Comments
 (0)