Uri 函数是否创建连接?

发布于 2024-10-10 02:22:16 字数 328 浏览 2 评论 0原文

我在我的 C# 程序中使用类似的内容:

Uri myuri = new Uri(toCheck);
...
...
if (myuri.Contains("string here"))
{
...
}

Is the Uri function attempts to connect to the remote server for getting the hostname? 我询问性能原因。

确定“http://website.com/news/page.php?id=1&news=5”等地址的主机名的最佳方法是什么,

谢谢:)

I use something like this in my C# program:

Uri myuri = new Uri(toCheck);
...
...
if (myuri.Contains("string here"))
{
...
}

Is the Uri function trying to connect to the remote server for getting the hostname?
I ask for performance reasons..

How would be the best way for determinating the hostname of an address like "http://website.com/news/page.php?id=1&news=5

thanks :)

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

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

发布评论

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

评论(2

抚你发端 2024-10-17 02:22:16

不,System.Uri 纯粹是一个字符串处理程序,其中没有任何内容与网络交互。

要获取主机名,请使用 GetLeftPart 函数并传递在所需的 UriPartial 值中:

var uri = new Uri(@"http://website.com/news/page.php?id=1&news=5");
var hostname = uri.GetLeftPart(UriPartial.Authority); // http://website.com

No, System.Uri is purely a string-handler, nothing there interacts with the network.

To get the HostName, use the GetLeftPart function and pass in the desired UriPartial value:

var uri = new Uri(@"http://website.com/news/page.php?id=1&news=5");
var hostname = uri.GetLeftPart(UriPartial.Authority); // http://website.com
淑女气质 2024-10-17 02:22:16

不,它不会连接。它只是关于 uri 的信息。

要确定主机名,请使用 Uri 对象的 .Host 属性。

No it wont connect. Its just information about a uri.

To determine the hostname use the .Host property of the Uri object.

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