Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RealProxy in dotnet core?

I'm working with the namespaces System.Runtime.Remoting.Proxies and System.Runtime.Remoting.Messaging for AOP in C#. I'm trying to port my application from .Net Framework 4.6 to dnxcore/dotnet core.

Intellisense says, that these two namespaces are not available with my framework-vesion (netcoreapp1.0 / dnxcore50). Any idea if these two namespaces will appear? or any idea how to get the AOP like with the RealProxy-class?

I don't want to use 3rd-party-libraries - I only want to use what .Net offers me.

like image 715
Matthias Burger Avatar asked Jul 19 '16 20:07

Matthias Burger


1 Answers

It looks like RealProxy won't come to .NET Core/Standard. In the issue, a Microsoft developer suggests DispatchProxy as an alternative.

Also, some existing AOP frameworks may support .NET Core already or in the future (as seen in the comments on the question).

An alternative is the DispatchProxy, which has a wonderful example here: http://www.c-sharpcorner.com/article/aspect-oriented-programming-in-c-sharp-using-dispatchproxy/.

If we simplify the code, this is what we get:

public class LoggingDecorator<T> : DispatchProxy {     private T _decorated;      protected override object Invoke(MethodInfo targetMethod, object[] args)     {         try         {             LogBefore(targetMethod, args);              var result = targetMethod.Invoke(_decorated, args);              LogAfter(targetMethod, args, result);             return result;         }         catch (Exception ex) when (ex is TargetInvocationException)         {             LogException(ex.InnerException ?? ex, targetMethod);             throw ex.InnerException ?? ex;         }     }      public static T Create(T decorated)     {         object proxy = Create<T, LoggingDecorator<T>>();         ((LoggingDecorator<T>)proxy).SetParameters(decorated);          return (T)proxy;     }      private void SetParameters(T decorated)     {         if (decorated == null)         {             throw new ArgumentNullException(nameof(decorated));         }         _decorated = decorated;     }      private void LogException(Exception exception, MethodInfo methodInfo = null)     {         Console.WriteLine($"Class {_decorated.GetType().FullName}, Method {methodInfo.Name} threw exception:\n{exception}");     }      private void LogAfter(MethodInfo methodInfo, object[] args, object result)     {         Console.WriteLine($"Class {_decorated.GetType().FullName}, Method {methodInfo.Name} executed, Output: {result}");     }      private void LogBefore(MethodInfo methodInfo, object[] args)     {         Console.WriteLine($"Class {_decorated.GetType().FullName}, Method {methodInfo.Name} is executing");     } } 

So if we have an example class Calculator with a corresponding interface (not shown here):

public class Calculator : ICalculator {     public int Add(int a, int b)     {         return a + b;     } } 

we can simply use it like this

static void Main(string[] args) {     var decoratedCalculator = LoggingDecorator<ICalculator>.Create(new Calculator());     decoratedCalculator.Add(3, 5);     Console.ReadKey(); } 
like image 74
Manuel Allenspach Avatar answered Sep 28 '22 15:09

Manuel Allenspach