AOP PostSharp
Posted 吴晓阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AOP PostSharp相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using PostSharp.Laos; using PostSharp; namespace PostSharpApp { [MyTrace(AttributeTargetMembers="Test*")] class Program { static void Main(string[] args) { Test1(); Test2(); Foo(); Console.ReadLine(); } static void Test1() { Console.WriteLine("Hello world! 1"); } static void Test2() { Console.WriteLine("Hello world! 2"); } static void Foo() { Console.WriteLine("Hello world! 3"); } } [Serializable] class MyTrace : OnMethodBoundaryAspect { public override void OnEntry(MethodExecutionEventArgs eventArgs) { Console.WriteLine("Entering {0}", eventArgs.Method); } public override void OnExit(MethodExecutionEventArgs eventArgs) { Console.WriteLine("Exiting {0}", eventArgs.Method); } } }
以上是关于AOP PostSharp的主要内容,如果未能解决你的问题,请参考以下文章