使用 Moles 在另一个进程中挂钩方法
我有一个用 Visual Studio 编译的 C# 应用程序。我想拦截并记录对该应用程序中某些特定方法的调用和序列化方法参数。是否可以拦截另一个进程中的方法调用(也许通过使用应用程序域?)。
换句话说,我想在 .NET 中实现与 madCodeHook 和 Detours 在 win32 中实现的类似目标。
I have a C# application compiled with visual studio. I want to intercept and log calls and serialized method parameters to some specific methods in that app. Is it possible to intercept method calls in another process (maybe by using App domains?).
In other words, I want to achieve similar goal in .NET as madCodeHook and Detours does for win32.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于多处理器编程,使用 MPI(消息传递接口)会更容易。
尝试查看此页面。
For multiprocessor programming it's easier using MPI (Message Passing Interface).
Try to look into this page.