-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
System.PlatformNotSupportedException when using ContentDisposition #42576
Comments
Tagging subscribers to this area: @dotnet/ncl |
cc: @akoeplinger, @marek-safar |
Tagging subscribers to this area: @dotnet/ncl |
JFR - |
Yes, we will probably have to exclude ContentDisposition from that if it's also used by System.Net.Http headers |
I've just stumbled over this as well. Different scenario - I was using MailAddress in Blazor webassembly to validate an email address and it stopped working when I converted it to .Net 5.0. It used to work with .Net core. try
{
new MailAddress(emailAdddress);
}
catch
{
return false;
} |
Looking into this. Thanks for the report. |
Closed by #42974 |
Greetings,
since the .NET5 RC1 update on a Blazor WASM, following lines lead to a System.PlatformNotSupportedException
I think this is a bug, since the ContentDisposition class documentation says it applies to .NET RC1.
Best regards,
Stefan
The text was updated successfully, but these errors were encountered: