How to decode URL in .NET 4 Client Profile? HttpUtil is not accessible from this profile...Maybe some opensource libs?Or maybe some way to add HttpUtil without changing target framework?
Asked
Active
Viewed 2,099 times
5
-
why are you restricted to .NET client profile? Just switch to full .NET 4, it's not that much bigger anyway. – BrokenGlass Feb 18 '11 at 17:44
-
Project is a part of very big solution, I'm not sure I have to switch to .NET 4 Full only because of this small problem... – illegal-immigrant Feb 18 '11 at 17:46
2 Answers
14
Call Uri.UnescapeDataString
.

SLaks
- 868,454
- 176
- 1,908
- 1,964
-
Great, thanks! I am wondering why I was unable to find it...Every time I googled - I saw only HttpUtil... – illegal-immigrant Feb 18 '11 at 17:50
-
3Now your question will show up in Google result for others to find ;) – dance2die Feb 18 '11 at 17:52
-