I am reading from history, and I want that when i come across a google query, I can extract the query string. I am not using request or httputility since i am simply parsing
If you don't want to use System.Web.HttpUtility
(thus be able to use the client profile), you can still use Mono HttpUtility.cs which is only an independent .cs file that you can embed in your application. Then you can simply use the ParseQueryString
method inside the class to parse the query string properly.