The http:get-query-parameter() function returns the values of a query parameter as a sequence of strings.
It is possible to have multiple values associated with one parameter name. These values are always returned in the same order that they appeared in the URL. If the name appears in the query string with no value, (that is, as "name" rather than "name=value"), the corresponding value appears in the value sequence as an empty string. The argument is case sensitive.
Function Signature | http:get-query-parameter($name as xs:string) as xs:string* |
Function Summary | The http:get-query-parameter() function returns the value of a query parameter as a sequence of strings. |
Parameters | $name as xs:string |
Example | http:get-query-parameter() might return something like ("value1","value2"). |