在 WCF Web Api 附带的 HttpClient 上设置代理?

发布于 2024-12-15 10:32:33 字数 74 浏览 2 评论 0原文

有谁知道在 wcf web api 附带的 httpclient 上设置代理的方法吗?我只是希望能够用 fiddler 监控所有流量。

Does anyone know of a way to set a proxy on httpclient that comes with the wcf web api? I just want to be able to monitor all the traffic with fiddler.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

長街聽風 2024-12-22 10:32:33

您不需要在 HttpClient 上设置代理即可使用 fiddler。如果您在本地主机上托管,请在此处查看这些提示 http://www. fiddler2.com/fiddler/help/hookup.asp#Q-LocalTraffic

如果你真的想使用代理那么你可以这样做,

var clientHandler = new HttpClientHandler();
clientHandler.Proxy = new WebProxy(new Uri("http://..."));
var httpClient = new HttpClient(clientHandler);

You don't need to set a proxy on HttpClient to use fiddler. If you are hosting on localhost then check these tips here http://www.fiddler2.com/fiddler/help/hookup.asp#Q-LocalTraffic.

if you really want to use a proxy then you can do it like this,

var clientHandler = new HttpClientHandler();
clientHandler.Proxy = new WebProxy(new Uri("http://..."));
var httpClient = new HttpClient(clientHandler);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文