2017-09-04 162 views
15

我正在將我的應用程序從.Net Framework 4.5.1遷移到Dot Net Core。 我用RealProxy班登錄BeforeExecute和AfterExecute用戶信息和參數(如本linkDotnet核心中的AOP:在Dotnet核心中具有Real Proxy的動態代理

現在看來有沒有這樣的點core.Plus的事我不想使用第三方parties.I發現這個使用Actionfilter的link,但它不會完成這項工作。

我的問題是如何在Dot net Core中實現動態代理? RealProxy Class有沒有其他替代方案?

回答

0

正如我已經在RealProxy in dotnet core?中回答的那樣,RealProxy在.NET Core中不存在。

另一種方法是DispatchProxy,它有一個很好的例子:http://www.c-sharpcorner.com/article/aspect-oriented-programming-in-c-sharp-using-dispatchproxy/

如果我們簡化代碼,這就是我們得到:

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"); 
    } 
} 

因此,如果我們有一個例子類Calculator有相應的接口(這裏沒有顯示):

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

我們可以只需像這樣使用它

static void Main(string[] args) 
{ 
    var decoratedCalculator = LoggingDecorator<ICalculator>.Create(new Calculator()); 
    decoratedCalculator.Add(3, 5); 
    Console.ReadKey(); 
} 

然後您將得到所需的日誌記錄。

+1

「正如我已經在...中回答的那樣」爲什麼你不把這個問題標記爲重複的呢? –