Castle, AOP and Logging in .NET
Asked Answered
D

1

7

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

Desuetude answered 26/10, 2008 at 22:54 Comment(1)
Try this from Ayende's blog: http://ayende.com/Blog/archive/2008/07/31/Logging--the-AOP-way.aspxCumulation
S
8

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.

Stalactite answered 26/10, 2008 at 23:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.