Uri 函数是否创建连接?
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,System.Uri 纯粹是一个字符串处理程序,其中没有任何内容与网络交互。
要获取主机名,请使用 GetLeftPart 函数并传递在所需的 UriPartial 值中:
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:
不,它不会连接。它只是关于 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.