-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Expect 100 Continue Hang #38774
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
Expect 100 Continue Hang #38774
Changes from all commits
bef51df
4c212a7
d674782
bff243c
06f453e
a800632
24b8687
5e97b7b
b2ca94c
ac0a829
5826443
8c8cd64
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using System.IO; | ||
| using System.Threading; | ||
| using System.Threading.Tasks; | ||
|
|
||
| namespace System.Net.Http.Functional.Tests | ||
| { | ||
| public partial class ThrowingContent : HttpContent | ||
| { | ||
| protected override void SerializeToStream(Stream stream, TransportContext context, CancellationToken cancellationToken) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this needed? Shouldn't the default
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TL;DR yes This is the only sync implementation we provide for |
||
| { | ||
| throw _exnFactory(); | ||
| } | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.