Uri.IsBaseOf(Uri) 方法

定义

确定当前的 Uri 实例是否为指定 Uri 实例的基。

public:
 bool IsBaseOf(Uri ^ uri);
public bool IsBaseOf (Uri uri);
member this.IsBaseOf : Uri -> bool
Public Function IsBaseOf (uri As Uri) As Boolean

参数

uri
Uri

要测试的指定 URI。

返回

Boolean

如果当前 true 实例是 Uri 的基,则为 uri;否则,为 false

例外

urinull

示例

此示例创建一个 Uri 表示基 Uri 实例的实例。 然后,它从字符串创建第二 Uri 个实例。 它调用 IsBaseOf 以确定基实例是否为第二个实例的基实例。 结果将写入控制台。

// Create a base Uri.
Uri^ baseUri = gcnew Uri( "http://www.contoso.com/" );

// Create a new Uri from a string.
Uri^ uriAddress = gcnew Uri( "http://www.contoso.com/index.htm?date=today" );

// Determine whether BaseUri is a base of UriAddress.  
if ( baseUri->IsBaseOf( uriAddress ) )
   Console::WriteLine( "{0} is the base of {1}", baseUri, uriAddress );
// Create a base Uri.
Uri baseUri = new Uri("http://www.contoso.com/");

// Create a new Uri from a string.
Uri uriAddress = new Uri("http://www.contoso.com/index.htm?date=today");

// Determine whether BaseUri is a base of UriAddress.
if (baseUri.IsBaseOf(uriAddress))
    Console.WriteLine("{0} is the base of {1}", baseUri, uriAddress);
// Create a base Uri.
let baseUri = Uri "http://www.contoso.com/"

// Create a new Uri from a string.
let uriAddress = Uri "http://www.contoso.com/index.htm?date=today"

// Determine whether BaseUri is a base of UriAddress.
if baseUri.IsBaseOf uriAddress then
    printfn $"{baseUri} is the base of {uriAddress}"
' Create a base Uri.
Dim baseUri As New Uri("http://www.contoso.com/")

' Create a new Uri from a string.
Dim uriAddress As New Uri("http://www.contoso.com/index.htm?date=today")

' Determine whether BaseUri is a base of UriAddress.  
If baseUri.IsBaseOf(uriAddress) Then
    Console.WriteLine("{0} is the base of {1}", baseUri, uriAddress)
End If

注解

IsBaseOf 用于将当前 Uri 实例与指定的 Uri 实例进行比较,以确定此 URI 是否为指定 UriURI 的基础。 比较两 Uri 个对象以确定基本关系时,不会评估 (UserInfo) 的用户信息。 比较两个 URI (uri1 和 uri2) 时,如果忽略上一个斜杠 (/) 后 uri2 中的所有内容,则 uri1 是 uri2 的基数。 下表 http://host/path/path/file?query 使用基 URI,显示它是否是其他 URI 的基础。

URI http://host/path/path/file?query 是基数
http://host/path/path/file/
http://host/path/path/#fragment
http://host/path/path/MoreDir/"
http://host/path/path/OtherFile?Query
http://host/path/path/
http://host/path/path/file
http://host/path/path
http://host/path/path?query
http://host/path/path#Fragment
http://host/path/path2/
://host/path/path2/MoreDir
http://host/path/File

适用于