-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10891 from dotnet/main
Merge main into live
- Loading branch information
Showing
22 changed files
with
1,704 additions
and
1,646 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
snippets/csharp/System.Net.Http/HttpCompletionOption/HttpCompletionOptionSnippets.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Net.Http; | ||
using System.Threading.Tasks; | ||
|
||
namespace HttpCompletionOptionSnippets | ||
{ | ||
class HttpCompletionOptionSnippets | ||
{ | ||
public static async Task RunAsync() | ||
{ | ||
//<SnippetHttpCompletionOption> | ||
using var httpClient = new HttpClient(); | ||
httpClient.Timeout = TimeSpan.FromSeconds(30); | ||
httpClient.MaxResponseContentBufferSize = 1_000; // This will be ignored | ||
|
||
// Because we're specifying the ResponseHeadersRead option, | ||
// the 30-second timeout applies only up until the headers are received. | ||
// It does not affect future operations that interact with the response content. | ||
using HttpResponseMessage response = await httpClient.GetAsync( | ||
"http://localhost:12345/", | ||
HttpCompletionOption.ResponseHeadersRead); | ||
|
||
// Do other checks that don't rely on the content first, like status code validation. | ||
response.EnsureSuccessStatusCode(); | ||
|
||
// Since the HttpClient.Timeout will not apply to reading the content, | ||
// you must enforce it yourself, for example by using a CancellationTokenSource. | ||
using var cancellationSource = new CancellationTokenSource(TimeSpan.FromSeconds(15)); | ||
|
||
// If you wish to enforce the MaxResponseContentBufferSize limit as well, | ||
// you can do so by calling the LoadIntoBufferAsync helper first. | ||
await response.Content.LoadIntoBufferAsync(1_000, cancellationSource.Token); | ||
|
||
// Make sure to pass the CancellationToken to all methods. | ||
string content = await response.Content.ReadAsStringAsync(cancellationSource.Token); | ||
//</SnippetHttpCompletionOption> | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
snippets/csharp/System.Net.Http/HttpCompletionOption/HttpCompletionOptionSnippets.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
</Project> |
15 changes: 15 additions & 0 deletions
15
snippets/csharp/System.Net.Http/HttpCompletionOption/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
|
||
namespace HttpCompletionOptionSnippets | ||
{ | ||
class MetadataReaderSnippets | ||
{ | ||
class Program | ||
{ | ||
static async Task Main() | ||
{ | ||
await HttpCompletionOptionSnippets.RunAsync(); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.