Is there an easy way to dump a complete HttpRequest. I need this to analyze a problem in my web application. The HttpRequest contains many properties, and i don´t want to write it on my own.
HttpRequest request = HttpContext.Current.Request;
request.Dump();
I´m looking for a method like one in Linqpad that prints out all properties with values.