Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decoding Url with c# in .NET4 Client profile

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?

like image 716
illegal-immigrant Avatar asked Feb 18 '11 17:02

illegal-immigrant


2 Answers

Call Uri.UnescapeDataString.

like image 57
SLaks Avatar answered Sep 25 '22 08:09

SLaks


Is Uri.UnescapeDataString any use to you?

like image 34
Jon Skeet Avatar answered Sep 24 '22 08:09

Jon Skeet