I use the following function:
HttpUtility.ParseQueryString
I'm able to extract one parameter value so far. However now I'd like if possible to obtain all parameters in an array, and another array with all their value. Is there a way to do this?
For one parameter value I do this:
HttpUtility.ParseQueryString(myUri.Query).Get(param)
In the worst case, if I can't have an array for both, if I could get a string array
for the parameters, I could then use the line above with every parameters to get the value.