fin
fin

Reputation: 1303

How to trace the raw HTTP Request invoked using WebClient?

What is the best method to trace programmatically the full raw HTTP request when using the WebClient class?

Upvotes: 3

Views: 4274

Answers (1)

HatSoft
HatSoft

Reputation: 11191

You can achieve it programmactically by using System.Net tracing

See example here on MSDN http://msdn.microsoft.com/en-us/library/ty48b824.aspx

Upvotes: 8

Related Questions