博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# uri.host_C#| 带示例的Uri.Fragment属性
阅读量:2531 次
发布时间:2019-05-11

本文共 1261 字,大约阅读时间需要 4 分钟。

c# uri.host

Uri.Fragment属性 (Uri.Fragment Property)

Uri.Fragment Property is instance property of Uri class which used to get a un-escaped fragment from URI. This property returns a string value. This property may generate System.InvalidOperationException exception.

Uri.Fragment属性Uri类的实例属性,用于从URI获取未转义的片段。 此属性返回一个字符串值。 此属性可能会生成System.InvalidOperationException异常。

Syntax:

句法:

public string Fragment { get; }

Return value:

返回值:

The return type of this property is string, it returns a string that contains any URI fragment information.

此属性的返回类型为string ,它返回一个包含任何URI片段信息的字符串。

Example to demonstrate example of Uri.Fragment Property

演示Uri.Fragment属性示例的示例

using System;class UriExample{
//Entry point of Program static public void Main() {
Uri domainUri; domainUri = new Uri("https://www.includehelp.com/home.html#C-Articles"); Console.WriteLine("Uri Fragment: "+ domainUri.Fragment); }}

Output

输出量

Uri Fragment: #C-Articles

In the above program, we created an object of Uri class initialized with URI that contains fragment "#C-Articles" and we got a un-escaped fragment using Fragment property.

在上面的程序中,我们创建了一个Uri类的对象,该对象用URI初始化,其中包含片段“#C-Articles”,并使用Fragment属性获得了一个未转义的片段。

Reference:

参考:

翻译自:

c# uri.host

转载地址:http://zzozd.baihongyu.com/

你可能感兴趣的文章
My安卓知识6--关于把项目从androidstudio工程转成eclipse工程并导成jar包
查看>>
旧的起点(开园说明)
查看>>
生产订单“生产线别”带入生产入库单
查看>>
crontab导致磁盘空间满问题的解决
查看>>
java基础 第十一章(多态、抽象类、接口、包装类、String)
查看>>
Hadoop 服务器配置的副本数量 管不了客户端
查看>>
欧建新之死
查看>>
自定义滚动条
查看>>
APP开发手记01(app与web的困惑)
查看>>
笛卡尔遗传规划Cartesian Genetic Programming (CGP)简单理解(1)
查看>>
mysql 日期时间运算函数(转)
查看>>
初识前端作业1
查看>>
ffmpeg格式转换命令
查看>>
万方数据知识平台 TFHpple +Xpath解析
查看>>
Hive实现oracle的Minus函数
查看>>
秒杀多线程第四篇 一个经典的多线程同步问题
查看>>
RocketMQ配置
查看>>
vs code调试console程序报错--preLaunchTask“build”
查看>>
蚂蚁金服井贤栋:用技术联手金融机构,形成服务小微的生态合力
查看>>
端口号大全
查看>>