How do I see the raw HTTP request that the HttpWebRequest class sends?

后端 未结 8 698
伪装坚强ぢ
伪装坚强ぢ 2020-11-29 01:19

I know you are all going to answer \"use a debugging proxy server like Fiddler\" but it\'s not that simple.

Here\'s my situation: I have some code that runs on a ser

8条回答
  •  盖世英雄少女心
    2020-11-29 01:33

    Another suggestion. Implement your own web proxy, and set your request to use it with WebRequest.Proxy. Then you should be able to extract the traffic from the proxy instance.

    Edit: update for links.

提交回复
热议问题