当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Uri.Fragment用法及代码示例


Uri.Fragment 属性是实例属性,用于获取转义的 URI 片段。

用法:

public string Fragment { get; }

返回值:此属性返回包含任何 URI 片段信息的字符串。

异常:此属性为相对 URI 抛出 InvalidOperationException 并且仅对绝对 URI 有效。

范例1:



C#


// C# program to demonstrate the  
// Uri.Fragment property  
using System;  
using System.Globalization;  
      
class GFG {  
      
     // Main Method  
    public static void Main()  
    {  
        // Declaring and initializing value1  
        Uri  v1 = new Uri("https://www.geeksforgeeks.org/greedy-algorithms/#standardGreedyAlgorithms");
          
       // using Fragment property  
        Console.WriteLine("Uri Fragment:"+ v1.Fragment);  
    }  
}

输出:

Uri Fragment:#standardGreedyAlgorithms

范例2:

C#


// C# program to demonstrate the  
// Uri.Fragment property  
using System;  
using System.Globalization;  
      
class GFG {  
      
     // Main Method  
    public static void Main()  
    {  
        // Declaring and initializing value1  
        Uri  v1 = new Uri("https://www.geeksforgeeks.org/greedy-algorithms/#approximateGreedyAlgorthms");
         
        // using Fragment property  
        Console.WriteLine("Uri Fragment:"+ v1.Fragment);  
    }  
}

输出:

Uri Fragment:#approximateGreedyAlgorthms



相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Uri.Fragment Property in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。