如何使用 .net 监控给定应用程序的网络流量?

发布于 2024-09-16 23:03:03 字数 68 浏览 6 评论 0 原文

如何使用 .net 监控给定应用程序的网络流量?

更新:如何使用 .net 监控另一个应用程序的网络流量?

How can I monitor the network traffic for a given app using .net?

UPDATE: How can I monitor the network traffic of another application using .net?

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

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

发布评论

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

评论(1

飞烟轻若梦 2024-09-23 23:03:04

如果您无权访问应用程序的代码,则可以使用面向方面的框架来实现此目的,该框架执行 运行时编织。

运行时编织允许您修改可执行文件,以便它在应用程序中的网络代码之前调用您的监视代码。

If you don't have access to the code for the application, you might be able to do it with an Aspect-Oriented Framework that does runtime weaving.

Runtime weaving allows you to modify the executable so that it calls your monitoring code before the networking code in the application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文