Uri.HexEscape(Char)方法用于获取指定Uri实例的规范字符串表示形式。
用法: public override string ToString ();
返回值:此方法返回一个String实例,其中包含Uri实例的未转义规范表示形式。除#、?和%外,所有字符均未转义。
以下示例程序旨在说明Uri.ToString()方法的使用:
示例1:
// C# program to demonstrate the
// Uri.ToString() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Create a new Uri from a string address.
Uri uri = new Uri("HTTP://www.Contoso.com:80/thick%20and%20thin.htm");
// Converts a specified uri into
// its string equivalent.
// using ToString() method
string value = uri.ToString();
// Displaying the result
Console.WriteLine("Converted string is: {0}", value);
}
}
输出:
Converted string is: http://www.contoso.com/thick and thin.htm
示例2:
// C# program to demonstrate the
// Uri.ToString() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(new Uri("http://www.contoso.com"));
get(new Uri("http://www.google.com"));
}
// defining get() method
public static void get(Uri uri)
{
// Converts a specified uri
// into its string equivalent.
// using ToString() method
string value = uri.ToString();
// Displaying the result
Console.WriteLine("Converted string is: {0}", value);
}
}
输出:
Converted string is: http://www.contoso.com/ Converted string is: http://www.google.com/
参考:
相关用法
- C# DateTimeOffset.Add()用法及代码示例
- C# String.Contains()用法及代码示例
- C# Math.Sin()用法及代码示例
- C# Math.Cos()用法及代码示例
- C# Dictionary.Add()用法及代码示例
- C# Math.Tan()用法及代码示例
- C# Math.Abs()方法用法及代码示例
- C# Math.Exp()用法及代码示例
- C# Math.Abs()函数用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | Uri.ToString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。