5.9 C
New York
Wednesday, April 2, 2025

How one can use DispatchProxy for AOP in .NET Core




public class CustomLogger : DispatchProxy the place T : class
{
    personal readonly ILogger _logger;
    personal T goal;
    protected override object Invoke
    (MethodInfo targetMethod, object[] args)
    {
       throw new NotImplementedException();
    }
    public static T Create(T goal)
    {
       throw new NotImplementedException();
    }
}

The CustomLogger class proven within the previous code makes use of Serilog to log knowledge on this instance. The next code snippet exhibits how one can replace the Invoke methodology we created within the MyClassDispatchProxy class earlier to include logging capabilities.


protected override object Invoke
    (MethodInfo targetMethod, object[] args)
    {
        if(targetMethod == null)
            throw new ArgumentNullException(nameof(targetMethod));
        _logger.Info($"Getting into methodology: {targetMethod.Identify}...");
         var consequence = targetMethod.Invoke(goal, args);
        _logger.Info($"Exiting methodology: {targetMethod.Identify}...");
        return consequence;
    }

Word how the strategy calls are logged earlier than and after invocation within the Invoke methodology. If the targetMethod occasion is null, the Invoke methodology throws an exception. Within the Create methodology, we create a brand new occasion of the CustomLogger<T> class after which set the goal object based mostly on which the proxy object will intercept methodology calls.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles