如何使用动态代理拦截 IIncation?

发布于 2024-11-05 10:20:15 字数 136 浏览 0 评论 0原文

是否可以使用动态代理和 Windsor 拦截 IIncation(如果这种情况甚至需要 Windsor。不过,我使用它来配置代理生成)?
我想记录拦截已更改对拦截方法的调用。
例如传递的参数被更改或返回值。
请注意,这仅用于调试目的。

Is it possible to intercept an IInvocation using dynamic proxy and windsor (if windsor is even needed for such a case. I am using it to configure the proxy generation though)?
I would like to log that an interception has changed the call to the intercepted method.
For example the passed arguments were changed or the return value.
Note that this is for debug only purposes.

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

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

发布评论

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

评论(2

爱的十字路口 2024-11-12 10:20:15

请按照以下代码操作:

public class TransactionInterceptor : IInterceptor
{
    private readonly IUnitOfWork _UnitOfWork;
    public TransactionInterceptor(IUnitOfWork unitOfWork)
    {
        _UnitOfWork = unitOfWork;
    }

    public void Intercept(IInvocation invocation)
    {
        _UnitOfWork.Begin();

        try
        {
            invocation.Proceed();
            _UnitOfWork.Commit();
        }
        catch (Exception)
        {
            _UnitOfWork.RollBack();
            throw;
        }
    }
}

Follow the code below:

public class TransactionInterceptor : IInterceptor
{
    private readonly IUnitOfWork _UnitOfWork;
    public TransactionInterceptor(IUnitOfWork unitOfWork)
    {
        _UnitOfWork = unitOfWork;
    }

    public void Intercept(IInvocation invocation)
    {
        _UnitOfWork.Begin();

        try
        {
            invocation.Proceed();
            _UnitOfWork.Commit();
        }
        catch (Exception)
        {
            _UnitOfWork.RollBack();
            throw;
        }
    }
}
述情 2024-11-12 10:20:15

是的,有可能,我建议阅读

Yes, its possible, I recommend to read this

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