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.
The built in
SaveAs()method might help you out.http://msdn.microsoft.com/en-us/library/system.web.httprequest.saveas.aspx
It’s description is: