I\'m looking for the simplest way of converting a query string from an HTTP GET request into a Dictionary, and back again.
I figure it\'s easier to carry out various
I stumbled across this post whilst looking for the same solution for an Azure WebJob, hopefully this helps others doing the same.
If you are coding an Azure WebJob you use the GetQueryParameterDictionary() extension method.
var queryParameterDictionary = request.GetQueryParameterDictionary();
where request is of type HttpRequest and queryParameterDictionary is now of type IDictionary