Uri.GetType() 方法
Uri.GetType() 方法是一个覆盖方法,用于返回当前对象的类型。
用法:
Type Uri.GetType();
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是Type
,它返回当前对象的类型。
示例演示 Uri.GetType() 方法的示例
using System;
class UriExample
{
//Entry point of Program
static public void Main()
{
// Create an object of Uri
Uri Address;
Address = new Uri("https://www.includehelp.com/index.html#search");
Console.WriteLine(Address.GetType());
}
}
输出
System.Uri Press any key to continue . . .
相关用法
- C# Uri.GetLeftPart()用法及代码示例
- C# Uri.GetHashCode()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
- C# Uri.Equality()用法及代码示例
- C# Uri.HexEscape()用法及代码示例
- C# Uri.TryCreate()用法及代码示例
- C# Uri.IsBaseOf(Uri)用法及代码示例
- C# Uri.DnsSafeHost用法及代码示例
- C# Uri.EscapeUriString()用法及代码示例
- C# Uri.FromHex()用法及代码示例
- C# Uri.Equals()用法及代码示例
- C# Uri.EscapeDataString()用法及代码示例
- C# Uri.HexUnescape()用法及代码示例
- C# Uri.IsHexDigit()用法及代码示例
- C# Uri.Fragment用法及代码示例
- C# Uri.IsWellFormedOriginalString()用法及代码示例
- C# Uri.CheckHostName(String)用法及代码示例
- C# Uri.Equals(Object)用法及代码示例
- C# Uri.EscapeDataString(String)用法及代码示例
注:本文由纯净天空筛选整理自 C# | Uri.GetType() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。