Uri.CheckHostName(String)方法用于确定指定的主机名是否为有效的DNS名称。
用法: public static UriHostNameType CheckHostName (string name);
Here, it takes the host name to validate. This can be an IPv4 or IPv6 address or an Internet host name.
返回值:此方法返回一个UriHostNameType,它指示主机名的类型。如果无法确定主机名的类型,或者主机名为null或zero-length字符串,则此方法返回Unknown。
以下示例程序旨在说明Uri.CheckHostName()方法的使用:
示例1:
// C# program to demonstrate the
// Uri.CheckHostName(string) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing uri
string uri = "www.geeksforgeeks.org";
// using CheckHostName() method
UriHostNameType value = Uri.CheckHostName(uri);
// Displaying the result
Console.WriteLine("Host type is: {0}", value);
}
}
输出:
Host type is: Dns
示例2:
// C# program to demonstrate the
// Uri.CheckHostName(string) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing uri
string uri = "http:// localhost:3000";
// using CheckHostName() method
UriHostNameType value = Uri.CheckHostName(uri);
// Displaying the result
Console.WriteLine("Host type is: {0}", value);
}
}
输出:
Host type is: Unknown
参考:
相关用法
- 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.CheckHostName(String) Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。