get_query


Description:

[ Version ( since = "2.32" ) ]
public unowned string get_query ()

Gets this's query.

Example: Set and get the query:

public static int main (string[] args) {
Soup.URI uri = new Soup.URI ("http://username:password@localhost:8088/foo/bar.html?foo=f&bar=b#frag");

// Output: ``Query: foo=f&bar=b``
unowned string query = uri.get_query ();
print ("Query: %s\n", query);

// Output: ``URI: http://username@localhost:8088/foo/bar.html?index=main#frag``
uri.set_query ("index=main");
string uri_str = uri.to_string (false);
print ("URI: %s\n", uri_str);

return 0;
}

valac --pkg libsoup-2.4 uri-query.vala

Parameters:

this

a URI

Returns:

this's query.