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?

link|improve this question

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... – taras.roshko Feb 18 '11 at 17:46
feedback

2 Answers

up vote 6 down vote accepted

Call Uri.UnescapeDataString.

link|improve this answer
Great, thanks! I am wondering why I was unable to find it...Every time I googled - I saw only HttpUtil... – taras.roshko Feb 18 '11 at 17:50
Now your question will show up in Google result for others to find ;) – Sung Feb 18 '11 at 17:52
I hope) Sometimes solutions are so simple) – taras.roshko Feb 18 '11 at 17:54
feedback

Is Uri.UnescapeDataString any use to you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.