Since HttpUtility is not available in WinRT, I was wondering if there's a straightforward way to parse HTTP query strings?
Is there actually some equivalent to HttpUtility.ParseQueryString in WinRT?
Since HttpUtility is not available in WinRT, I was wondering if there's a straightforward way to parse HTTP query strings?
Is there actually some equivalent to HttpUtility.ParseQueryString in WinRT?
Instead of
HttpUtility.ParseQueryString
you can useWwwFormUrlDecoder
.Here's an example I grabbed here