Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve HttpClient exception docs #11103

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

antonfirsov
Copy link
Member

  • For each HttpClient method, list all main cases where an HttpRequestException might be thrown.
  • Add missing exception docs for PatchAsync.
  • Extend remarks for EnsureSuccessStatusCode.
  • Add remarks for Get(ByteArray|Stream|String)Async, calling out that in some cases manual status code validation might be a better option

The PR does not touch the HttpClientJsonExtensions docs, I'm planning to do it in a separate PR.

Fixes #9148

Copy link
Contributor

Tagging subscribers to this area: @dotnet/ncl

This comment was marked as outdated.

This comment was marked as outdated.

Copy link

Learn Build status updates of commit e78a667:

✅ Validation status: passed

File Status Preview URL Details
xml/System.Net.Http/HttpClient.xml ✅Succeeded View
xml/System.Net.Http/HttpResponseMessage.xml ✅Succeeded View

For more details, please refer to the build report.

For any questions, please:

@@ -2536,8 +2695,10 @@ The size specified is greater than the maximum allowed buffer size.</exception>

]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <paramref name="requestUri" /> must be an absolute URI or <see cref="P:System.Net.Http.HttpClient.BaseAddress" /> must be set.</exception>
<exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an issue getting a valid HTTP response such as network connectivity failure, DNS failure, server certificate validation error or invalid server response. On .NET 8+ the reason is indicated by <see cref="P:System.Net.Http.HttpRequestException.HttpRequestError" /></exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled or the request failed due to timeout.</exception>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the reason to drop "This exception is stored into the returned task"?

Copy link
Member Author

@antonfirsov antonfirsov Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HttpClient API docs follow a the nonstandard practice of documenting every stored exception for the async methods as a normal exception. Having the "This exception is stored into the returned task" line just for the OperationCanceledException felt odd.

We can open a tracking issue to add the line for every exception, but in this PR I wanted to harmonize the content around the most common practices in HttpClient docs.

Co-authored-by: Genevieve Warren <[email protected]>
Copy link

Learn Build status updates of commit 060db12:

✅ Validation status: passed

File Status Preview URL Details
xml/System.Net.Http/HttpClient.xml ✅Succeeded View
xml/System.Net.Http/HttpResponseMessage.xml ✅Succeeded View

For more details, please refer to the build report.

For any questions, please:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

HttpClient.GetStreamAsync raising HttpRequestException
3 participants