Uri.Query Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property Platform::String ^ Query { Platform::String ^ get(); };
winrt::hstring Query();
public string Query { get; }
var string = uri.query;
Public ReadOnly Property Query As String
Property Value
The query string.
Remarks
Query reports the query portion of the Uniform Resource Identifier (URI), and the subdelimiters (& characters) and key-value separators (=) are all reported as-is in that string. QueryParsed parses this string and creates a map of key-value pairs. This map is returned as a WwwFormUrlDecoder object.