Uri.AbsolutePath プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
URI の絶対パスを取得します。
public:
property System::String ^ AbsolutePath { System::String ^ get(); };
public string AbsolutePath { get; }
member this.AbsolutePath : string
Public ReadOnly Property AbsolutePath As 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 のスキーム、ホスト名、またはクエリ部分は含まれません。