Castly Dynamic Proxy - 获取目标方法的返回值

发布于 2024-11-26 09:15:38 字数 603 浏览 2 评论 0原文

使用castle动态代理代理对象并拦截方法时,是否可以获取目标方法的返回值?我尝试过使用以下方法,

object result = invocation.GetConcreteMethod().Invoke(instance, null); 

object result = invocation.GetConcreteMethodInvocationTarget().Invoke(instance, null); 

这会导致无限循环。我希望能够在调用 Invocation.Proceed() 之前获取被代理的原始目标方法的返回值。

编辑 - 仅供参考,我通过使用 Activator.CreateInstance 让它工作,但我想知道是否有更干净的方法来实现等效的:

object instance = Activator.CreateInstance(invocation.TargetType); 

invocation.MethodInvocationTarget.Invoke(instance, invocation.Arguments); 

问题是这只是原始对象的一个​​新的未代理实例,而我想要原始的未代理实例本身。

When proxying an object and intercepting a method using castle dynamic proxy, is it possible to get the return value of the target method? I have tried using the following methods,

object result = invocation.GetConcreteMethod().Invoke(instance, null); 

object result = invocation.GetConcreteMethodInvocationTarget().Invoke(instance, null); 

This causes an infinite loop. I want to be able to get the return value of the original target method being proxied before calling Invocation.Proceed().

EDIT -- Fyi I got it to work by using Activator.CreateInstance, but I'm wondering if there is a cleaner way to achieve the equivalent:

object instance = Activator.CreateInstance(invocation.TargetType); 

invocation.MethodInvocationTarget.Invoke(instance, invocation.Arguments); 

The problem is that this is simply a new un-proxied instance of the original object, whereas I want the original un-proxied instance itself.

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

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

发布评论

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

评论(1

走走停停 2024-12-03 09:15:38
invocation.Proceed();

var returnValue = invocation.ReturnValue;
invocation.Proceed();

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