无效的URI:URI方案无效。 - 新URI("&quet;​ https://docs.microsoft.com/windows/msix/app-inplater/update-settings")

发布于 2025-01-22 12:57:30 字数 814 浏览 0 评论 0 原文

我有一个非常简单的2行控制台应用程序(.NET 6),并且在创建 uri 时,

// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
var uri = new Uri("​https://learn.microsoft.com/windows/msix/app-installer/update-settings");

我会得到以下异常。我必须在这里做一些非常愚蠢的事情,但不能弄清楚。我也尝试了简单的URL,结果相同。

System.UriFormatException
  HResult=0x80131537
  Message=Invalid URI: The URI scheme is not valid.
  Source=System.Private.Uri
  StackTrace:
   at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind, UriCreationOptions& creationOptions)
   at System.Uri..ctor(String uriString)
   at Program.<Main>$(String[] args) in C:\Users\user\source\repos2\ConsoleApp1\ConsoleApp1\Program.cs:line 3

I have a very simple 2 lines console app (.net 6) and whilst creating a Uri,

// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
var uri = new Uri("​https://learn.microsoft.com/windows/msix/app-installer/update-settings");

I am getting the following exception. I must be doing something really silly here, but can't figure it out. I have tried simple urls too with the same result.

System.UriFormatException
  HResult=0x80131537
  Message=Invalid URI: The URI scheme is not valid.
  Source=System.Private.Uri
  StackTrace:
   at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind, UriCreationOptions& creationOptions)
   at System.Uri..ctor(String uriString)
   at Program.<Main>$(String[] args) in C:\Users\user\source\repos2\ConsoleApp1\ConsoleApp1\Program.cs:line 3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝情姑娘 2025-01-29 12:57:30

您在字符串中有一个附加的符号(在此不在此处显示)。这是从您的问题中复制出来的:

You have an additional symbol in string (it is not displayed here on SO). This is after copying from your question:

enter image description here

Delete this symbol before https and it will work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文