AnyUri.PathAndQuery PropertyAnyUri.PathAndQuery PropertyAnyUri::PathAndQuery Property

Gets the path and query information included in this URI.

Syntax

Public ReadOnly Property PathAndQuery As String
        Get
public string PathAndQuery { get; }
public:
property String^ PathAndQuery {
    String^ get();
}
 

Property Value

Type: System.StringSystem.StringSystem::String^

A stringStringString containing the path and query information specified in this URI, or EmptyEmptyEmpty if no path and query information is included in this URI.

Remarks

The path may contain percent-encoded characters. In order to retrieve the path without percent-encoded parameters then either use the GetComponentsGetComponentsGetComponents or UnescapeDataStringUnescapeDataStringUnescapeDataString methods.