-
Notifications
You must be signed in to change notification settings - Fork 10k
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
Minimal APIs - return string aren't setting content type header #33860 #34285
Merged
rafikiassumani-msft
merged 5 commits into
dotnet:main
from
rafikiassumani-msft:plainText
Jul 19, 2021
Merged
Minimal APIs - return string aren't setting content type header #33860 #34285
rafikiassumani-msft
merged 5 commits into
dotnet:main
from
rafikiassumani-msft:plainText
Jul 19, 2021
Conversation
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
rafikiassumani-msft
requested review from
BrennanConroy and
Tratcher
as code owners
July 12, 2021 16:45
ghost
added
area-runtime
community-contribution
Indicates that the PR has been added by a community member
labels
Jul 12, 2021
Tratcher
reviewed
Jul 12, 2021
src/Http/Http.Abstractions/src/Extensions/ContentTypeConstants.cs
Outdated
Show resolved
Hide resolved
src/Http/Http.Abstractions/src/Extensions/HttpResponseWritingExtensions.cs
Outdated
Show resolved
Hide resolved
halter73
reviewed
Jul 12, 2021
src/Http/Http.Abstractions/test/HttpResponseWritingExtensionsTests.cs
Outdated
Show resolved
Hide resolved
BrennanConroy
removed
the
community-contribution
Indicates that the PR has been added by a community member
label
Jul 12, 2021
halter73
reviewed
Jul 13, 2021
halter73
reviewed
Jul 13, 2021
halter73
reviewed
Jul 13, 2021
halter73
reviewed
Jul 13, 2021
halter73
reviewed
Jul 13, 2021
rafikiassumani-msft
force-pushed
the
plainText
branch
from
July 15, 2021 01:31
f330658
to
6848dc0
Compare
halter73
reviewed
Jul 15, 2021
halter73
reviewed
Jul 15, 2021
halter73
approved these changes
Jul 15, 2021
pranavkm
reviewed
Jul 15, 2021
Co-authored-by: Stephen Halter <halter73@gmail.com>
pranavkm
approved these changes
Jul 15, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I applied some of the suggestions for you to try and get this in before we branch.
halter73
reviewed
Jul 15, 2021
halter73
reviewed
Jul 15, 2021
halter73
reviewed
Jul 15, 2021
halter73
reviewed
Jul 15, 2021
halter73
reviewed
Jul 15, 2021
auto-merge was automatically disabled
July 15, 2021 19:34
Head branch was pushed to by a user without write access
ghost
added this to the 6.0-rc1 milestone
Jul 19, 2021
amcasey
added
area-networking
Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions
and removed
area-runtime
labels
Aug 24, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-networking
Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Set Content Type to Plain Text if ContextType Response header is not set
This change will set the contextType response header to "text/plain; charset=utf-8" when the content-type response header is null or was not set.
Addresses #33860