We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
new UriBuilder {Host="", Path="/é", Scheme="file"}.Uri
In .Net frame work: You obtain : [file:///é]
In .Net core: You obtain : [file://%2fé/é]
Escaping the text does not work either: new Uri("file://" + Uri.EscapeUriString("/é")) also fails in .NetCore but not in framework...
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/ncl Notify danmosemsft if you want to be subscribed.
Sorry, something went wrong.
@MihaZupan
Thanks for the report. This is a known bug that will be fixed for .NET 5.
Duplicate of #1061
No branches or pull requests
new UriBuilder {Host="", Path="/é", Scheme="file"}.Uri
In .Net frame work:
You obtain : [file:///é]
In .Net core:
You obtain : [file://%2fé/é]
Escaping the text does not work either: new Uri("file://" + Uri.EscapeUriString("/é")) also fails in .NetCore but not in framework...
The text was updated successfully, but these errors were encountered: