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的主要内容,如果未能解决你的问题,请参考以下文章

AOP PostSharp

.NET切面编程—PostSharp

.NET静态代码织入——肉夹馍(Rougamo)

开源.Net Aop(静态织入)框架 BSF.Aop

PostSharp 是分析生产中运行的代码的好方法吗?

JAVA之AOP