跟踪/拦截方法调用
我想拦截方法调用(通常是.net API)。
如何才能实现这一目标?
我通过谷歌搜索看到了 AOP/ContextBoundObject,但所有这些都需要从 ContextBoundObject 派生类。
我想拦截 MessageBox.Show 我无法修改。
I want to intercept a method call (usually .net API).
How can this be achived?
I have seen AOP/ContextBoundObject by some googling, but all those requires the class to be derived from ContextBoundObject.
I want to intercept MessageBox.Show Which i cannot modify.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道的唯一方法是使用运行时编织。在 .NET 中,我熟悉的唯一一个这样做的项目是 CThru ,它构建在名为 Typemock 的商业产品之上隔离器(我曾经在那里工作过)
The only way I know is by using run-time weaving. In .NET the only project I'm familiar with that does that is CThru built on top a commercial product called Typemock Isolator (I've used to work there)