次の方法で共有


Uri.PathAndQuery プロパティ

AbsolutePath プロパティと Query プロパティを疑問符 (?) で区切った形式で取得します。

Public ReadOnly Property PathAndQuery As String
[C#]
public string PathAndQuery {get;}
[C++]
public: __property String* get_PathAndQuery();
[JScript]
public function get PathAndQuery() : String;

プロパティ値

AbsolutePath プロパティと Query プロパティが疑問符 (?) で区切られた形式で含まれている文字列。

解説

PathAndQuery プロパティには、サーバーの絶対パスと、要求により送信されたクエリ情報が格納されています。このプロパティは、 AbsolutePath プロパティと Query プロパティを連結した結果と同じです。

PathAndQuery プロパティは RFC 2396 に従ってエスケープされます。

使用例

URI のパス (/catalog/shownew.htm) とクエリ (date= today) の情報をコンソールに出力する例を次に示します。

 
Dim baseUri As New Uri("https://www.contoso.com/")
Dim myUri As New Uri(baseUri, "catalog/shownew.htm?date=today")
       
Console.WriteLine(myUri.PathAndQuery)


[C#] 
Uri baseUri = new Uri("https://www.contoso.com/");
 Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today");
 
 Console.WriteLine(myUri.PathAndQuery);
   

[C++] 
Uri* baseUri = new Uri(S"https://www.contoso.com/");
Uri* myUri = new Uri(baseUri,S"catalog/shownew.htm?date=today");
 
Console::WriteLine(myUri->PathAndQuery);

[JScript] 
var baseUri : Uri = new Uri("https://www.contoso.com/");
var myUri : Uri = new Uri(baseUri, "catalog/shownew.htm?date=today");
Console.WriteLine(myUri.PathAndQuery);

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Uri クラス | Uri メンバ | System 名前空間