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

HttpListenerResponse.ContentType exception information is wrong or outdated #11070

Open
markusschaber opened this issue Mar 10, 2025 · 3 comments
Labels
area-System.Net untriaged New issue has not been triaged by the area owner

Comments

@markusschaber
Copy link

markusschaber commented Mar 10, 2025

Type of issue

Outdated article

Description

It seems that setting this property to null or an empty string removes the content type header, instead of throwing the documented exceptions.

Exceptions
ArgumentNullException

The value specified for a set operation is null.
ArgumentException

The value specified for a set operation is an empty string ("").

As the implementation actually provides useful behavior, I'm in favor of updating the documentation.

See the original source: https://github.com/dotnet/runtime/blob/main/src/libraries/System.Net.HttpListener/src/System/Net/HttpListenerResponse.cs#L36

      public string? ContentType
       {
           get => Headers[HttpKnownHeaderNames.ContentType];
           set
           {
               CheckDisposed();
               if (string.IsNullOrEmpty(value))
               {
                   Headers.Remove(HttpKnownHeaderNames.ContentType);
               }
               else
               {
                   Headers.Set(HttpKnownHeaderNames.ContentType, value);
               }
           }
       }

Page URL

https://learn.microsoft.com/en-us/dotnet/api/System.Net.HttpListenerResponse.ContentType?view=net-8.0

Content source URL

https://github.com/dotnet/dotnet-api-docs/blob/main/xml/System.Net/HttpListenerResponse.xml

Document Version Independent Id

77a14fab-0939-53e8-cdb7-f59d262e911e

Platform Id

e73e3459-e08a-db79-bce3-9d157059a7aa

Article author

@karelz

@dotnet-issue-labeler dotnet-issue-labeler bot added the needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners label Mar 10, 2025
Copy link

I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.

1 similar comment
Copy link

I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.

@dotnet-policy-service dotnet-policy-service bot added the untriaged New issue has not been triaged by the area owner label Mar 10, 2025
@gewarren gewarren added area-System.Net and removed needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners labels Mar 14, 2025
Copy link
Contributor

Tagging subscribers to this area: @dotnet/ncl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-System.Net untriaged New issue has not been triaged by the area owner
Projects
None yet
Development

No branches or pull requests

2 participants