Uri.AbsolutePath 属性

定义

获取 URI 的绝对路径。

public:
 property System::String ^ AbsolutePath { System::String ^ get(); };
public string AbsolutePath { get; }
member this.AbsolutePath : string
Public ReadOnly Property AbsolutePath As String

属性值

String

资源的绝对路径。

例外

此实例代表一个相对 URI,而此属性仅对绝对 URI 有效。

示例

以下示例将路径 /catalog/shownew.htm 写入控制台。

Uri^ baseUri = gcnew Uri( "http://www.contoso.com/" );
Uri^ myUri = gcnew Uri( baseUri,"catalog/shownew.htm?date=today" );
Console::WriteLine( myUri->AbsolutePath );
Uri baseUri = new Uri("http://www.contoso.com/");
Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today");

Console.WriteLine(myUri.AbsolutePath);
open System

let baseUri = Uri "http://www.contoso.com/"
let myUri = Uri(baseUri, "catalog/shownew.htm?date=today")

printfn $"{myUri.AbsolutePath}"
Dim baseUri As New Uri("http://www.contoso.com/")
Dim myUri As New Uri(baseUri, "catalog/shownew.htm?date=today")
       
Console.WriteLine(myUri.AbsolutePath)

注解

AbsolutePath 属性包含服务器用于解析信息请求的路径信息。 通常,这是服务器文件系统上所需信息的路径,不过也可以指示服务器必须运行的应用程序或脚本来提供信息。

路径信息不包括 URI 的方案、主机名或查询部分。

适用于