AnyUri.Query PropertyAnyUri.Query PropertyAnyUri::Query Property

Gets the query information included in this URI.

Syntax

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

Property Value

Type: System.StringSystem.StringSystem::String^

A stringStringString containing the query information included in this URI, or null a null reference (Nothing in Visual Basic) nullptr if the URI does not include any query information.

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.