c# uri.host_C#| Uri.IsBaseOf()方法与示例

c# uri.host

Uri.IsBaseOf()方法 (Uri.IsBaseOf() Method)

Uri.IsBaseOf() method is an instance method, which is used to check an object of Uri is the base of another object of Uri class. This method returns a boolean value, if the current object is base on a specified object then it returns true otherwise it returns false.

Uri.IsBaseOf()方法是一个实例方法,用于检查Uri的对象是否是Uri类的另一个对象的基础。 此方法返回一个布尔值,如果当前对象基于指定的对象,则返回true,否则返回false

Syntax:

句法:

    bool Uri.IsBaseOf(Uri uri);

Parameter(s):

参数:

  • Uri uri – represents the object that may be base of current object.

    Uri uri –表示可能是当前对象基础的对象。

Return value:

返回值:

The return type of this method is boolean, if current object is base of specified object then it returns true otherwise it returns false.

此方法的返回类型为boolean ,如果当前对象是指定对象的基础,则返回true,否则返回false

Example to demonstrate example of Uri.IsBaseOf() method

演示Uri.IsBaseOf()方法示例的示例

using System;

class UriExample
{
    //Entry point of Program
    static public void Main()
    {
        // Create some Uri objects
        Uri uri1 = new Uri("https://www.includehelp.com/");
        Uri uri2 = new Uri("https://www.duggu.com/");

        // Create a new Uri to check above uri are base of this uri or not.
        Uri newUri = new Uri("https://www.includehelp.com/C#_Article.aspx");

        //here we will check given uri is base of another Uri.
        if (uri1.IsBaseOf(newUri))
            Console.WriteLine("uri1 is baseof newUri");
        else
            Console.WriteLine("uri1 is not baseof newUri");

        if (uri2.IsBaseOf(newUri))
            Console.WriteLine("uri2 is baseof newUri");
        else
            Console.WriteLine("uri2 is not baseof newUri");
    }
}

Output

输出量

uri1 is baseof newUri
uri2 is not baseof newUri


翻译自: https://www.includehelp.com/dot-net/uri-isbaseof-method-with-example.aspx

c# uri.host

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值