PostSharp AOP编程:3.PostSharp的LocationInterceptionAspect类基本组成

        在PostSharp中得LocationInterceptionAspect类是针对属性或字段的面向方面截取。继承与它的特性将可以截取初始化属性、设置属性、获取属性等时候的数据,并且可以在这几个过程中针对属性进行附加控制。

        这个类里面有三个主要的函数可以重载分别是RuntimeInitialize(LocationInfo locationInfo)、OnSetValue(LocationInterceptionArgs args)、OnGetValue(LocationInterceptionArgs args)。他们分别意义如下:

        RuntimeInitialize(LocationInfo locationInfo):初始化包含属性或字段的类的时候运行此函数,增加控制代码,可以截取到运行此属性或字段的类信息,属性类型等信息。

        OnSetValue(LocationInterceptionArgs args):设置属性或字段值的时候运行此函数,增加相关设置值时代码,可以获取到此属性值、属性名等相关信息。

        OnGetValue(LocationInterceptionArgs args)。获取属性或字段值的时候运行此函数。

        首先我们编写一个继承于LocationInterceptionAspect类的特性,并且重载相关函数如下代码:

 

  
  
  
  
  1. [Serializable
  2. public class TestAspect : LocationInterceptionAspect 
  3.     //当目标类初始化属性的时候运行此函数。 
  4.     public override void RuntimeInitialize(LocationInfo locationInfo) 
  5.     { 
  6.         //打印类名、属性或字段名、字段类型 
  7.         string name = locationInfo.DeclaringType.Name + "." +  
  8.             locationInfo.Name + " (" + locationInfo.LocationType.Name + ")"; ; 
  9.         Console.WriteLine(name); 
  10.         Console.WriteLine("A"); 
  11.         System.Reflection.FieldInfo finfo = locationInfo.FieldInfo; 
  12.     } 
  13.     //设置属性的时候运行 
  14.     public override void OnSetValue(LocationInterceptionArgs args) 
  15.     { 
  16.         Console.WriteLine(args.LocationName); 
  17.         Console.WriteLine("B"); 
  18.         base.OnSetValue(args); 
  19.     } 
  20.     //获取属性的时候运行 
  21.     public override void OnGetValue(LocationInterceptionArgs args) 
  22.     { 
  23.         Console.WriteLine("C"); 
  24.         base.OnGetValue(args); 
  25.     } 

        其次我们编写一个目标类,此类中含有一个属性并且增加这个属性的特性如下代码所示:

 

  
  
  
  
  1. public class People 
  2.     [TestAspect] 
  3.     public string Name { get; set; } 

        最后我们在客户端初始化People类并且设置属性和获取属性如下代码:

 

  
  
  
  
  1. class Program 
  2.     static void Main(string[] args) 
  3.     { 
  4.         People p = new People(); 
  5.         p.Name = "Mike1"
  6.         Console.WriteLine(p.Name); 
  7.         Console.ReadLine(); 
  8.     } 
  9.  

        如需源码请点击 PostSharpField.rar  下载,运行效果如下图:

你可能感兴趣的:(编程,继承,职场,休闲)