In "regular" .NET there is a UrlEncode method that takes an Encoding parameter. Is there no such UrlEncode method in .NET for WP7?
I'm located in Sweden and I'm trying to retrieve data from a REST service that expects ISO-8859-1 in the requests (but responds in UTF-8).
When doing a search (input=frölunda
) and just using UrlEncode i get input=fr%C3%B6lunda
which returns very strange results because of the "missing" ö.
Using the .NET UrlDecode with iso-8859-1 encoding i get input=fr%F6lunda
which returns the excpected results.
Do I have to implement my own UrlEncode?