Castle, AOP and Logging in .NET

泪湿孤枕 提交于 2019-11-28 00:35:45

问题


Are there any tutorials or sample programs out there on using AOP, Castle, and logging in a .Net application? I have found pieces out there but I am looking for something more to help me form a more complete picture.

Thanks, -Brian


回答1:


You need to be using a custom Interceptor, which inherits from IInterceptor. For example:

public class LogInterceptor : IInterceptor
{    
    public void Intercept(IInvocation invocation)
    {
        Logger.Write("I'm in your method logging your access");
        invocation.Proceed();
    }
}

Hopefully this helps.



来源:https://stackoverflow.com/questions/238755/castle-aop-and-logging-in-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!