Uri各个属性取值测试

Posted Constructor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uri各个属性取值测试相关的知识,希望对你有一定的参考价值。

Uri各个属性取值测试

asp.net代码:

复制代码
Uri h_uri = new Uri("http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd#hovertree");
Response.Write("<br />Host:" + h_uri.Host);
Response.Write("<br />AbsolutePath:" + h_uri.AbsolutePath);
Response.Write("<br />AbsoluteUri:" + h_uri.AbsoluteUri);
Response.Write("<br />DnsSafeHost:" + h_uri.DnsSafeHost);
Response.Write("<br />Fragment:" + h_uri.Fragment);
Response.Write("<br />HostNameType:" + h_uri.HostNameType);
Response.Write("<br />IsAbsoluteUri:" + h_uri.IsAbsoluteUri.ToString());
Response.Write("<br />Segments:" + h_uri.Segments);
Response.Write("<br />UserInfo:" + h_uri.UserInfo);
Response.Write("<br />Query:" + h_uri.Query);
Response.Write("<br />PathAndQuery:" + h_uri.PathAndQuery);
Response.Write("<br />OriginalString:" + h_uri.OriginalString);
Response.Write("<br />LocalPath:" + h_uri.LocalPath);
Response.Write("<br />Authority:" + h_uri.Authority);
Response.Write("<br />DnsSafeHost:" + h_uri.DnsSafeHost);
复制代码

效果:

复制代码
Host:hovertree.com
AbsolutePath:/tiku/bjaf/3ntux9r9.htm
AbsoluteUri:http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd%23hovertree
DnsSafeHost:hovertree.com
Fragment:#hewenqipl?ddd%23hovertree
HostNameType:Dns
IsAbsoluteUri:True
Segments:System.String[]
UserInfo:
Query:?hewenqi
PathAndQuery:/tiku/bjaf/3ntux9r9.htm?hewenqi
OriginalString:http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd#hovertree
LocalPath:/tiku/bjaf/3ntux9r9.htm
Authority:hovertree.com
DnsSafeHost:hovertree.com

以上是关于Uri各个属性取值测试的主要内容,如果未能解决你的问题,请参考以下文章

26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段

arcgis怎么在指定的研究区范围内做克里金插值,并且把各个取值范围的面积统计出来。

CSS中的媒体片段URI替代方案?

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

重定向时如何在 Safari 中保留 uri 片段?