Castle, AOP and Logging in .NET

后端 未结 1 939
有刺的猬
有刺的猬 2020-12-18 01:33

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 m

相关标签:
1条回答
  • 2020-12-18 02:18

    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.

    0 讨论(0)
提交回复
热议问题