Castly Dynamic Proxy - 获取目标方法的返回值
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)