真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何進行C#實現(xiàn)AOP微型框架基礎的分析

如何進行C#實現(xiàn)AOP微型框架基礎的分析,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷推廣、網(wǎng)站重做改版、秦都網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、html5、成都商城網(wǎng)站開發(fā)、集團公司官網(wǎng)建設、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為秦都等各大城市提供網(wǎng)站開發(fā)制作服務。

在向大家詳細介紹C#實現(xiàn)AOP微型框架之前,首先讓大家了解下微型框架的.cs文件,然后全面介紹C#實現(xiàn)AOP微型框架。

在前面的系列文章中,我介紹了消息、代理與AOP的關(guān)系,這次將我自己用C#實現(xiàn)AOP微型框架拿出來和大家交流一下。

AOP的最基本功能就是實現(xiàn)特定的預處理和后處理,我通過代理讓C#實現(xiàn)AOP微型框架。先來看看構(gòu)成此微型框架的.cs文件。

1. AopProxyAttribute AOP代理特性

  1. using System;  

  2. using System.Runtime.Remoting ;  

  3. using System.Runtime.Remoting.Proxies ;  

  4.  

  5.  

  6. namespace EnterpriseServerBase.Aop  

  7. {  

  8. /// 

     

  9. /// AopProxyAttribute  

  10. /// AOP代理特性,如果一個類想實現(xiàn)具體的AOP,
    只要實現(xiàn)AopProxyBase和IAopProxyFactory,然后加上該特性即可。  

  11. /// 2005.04.11  

  12. ///  

  13.  

  14. [AttributeUsage(AttributeTargets.Class ,AllowMultiple = false)]  

  15. public class AopProxyAttribute : ProxyAttribute  

  16. {  

  17. private IAopProxyFactory proxyFactory = null ;  

  18.  

  19. public AopProxyAttribute(Type factoryType)  

  20. {  

  21. this.proxyFactory = (IAopProxyFactory)Activator.CreateInstance(factoryType) ;  

  22. }  

  23.  

  24. #region CreateInstance  

  25. /// 

     

  26. /// 獲得目標對象的自定義透明代理  

  27. ///  

  28. public override MarshalByRefObject CreateInstance(Type serverType)

  29. //serverType是被AopProxyAttribute修飾的類  

  30. {  

  31. //未初始化的實例的默認透明代理  

  32. MarshalByRefObject target = base.CreateInstance (serverType);

  33. //得到位初始化的實例(ctor未執(zhí)行)  

  34. object[] args = {target ,serverType} ;  

  35. //AopProxyBase rp = (AopProxyBase)Activator.CreateInstance(this.realProxyType ,args) ; 

  36. //Activator.CreateInstance在調(diào)用ctor時通過了代理,所以此處將會失敗  

  37.  

  38. //得到自定義的真實代理  

  39. AopProxyBase rp = this.proxyFactory.CreateAopProxyInstance(target ,serverType) ;

  40. //new AopControlProxy(target ,serverType) ;  

  41. return (MarshalByRefObject)rp.GetTransparentProxy() ;  

  42. }  

  43. #endregion  

  44. }  

2 .MethodAopSwitcherAttribute.cs

  1. using System;  

  2.  

  3. namespace EnterpriseServerBase.Aop  

  4. {  

  5. /// 

     

  6. /// MethodAopSwitcherAttribute 
    用于決定一個被AopProxyAttribute修飾的class的某個特定方法是否啟用截獲 。  

  7. /// 創(chuàng)建原因:絕大多數(shù)時候我們只希望對某個類的一部分Method而不是所有Method使用截獲。  

  8. /// 使用方法:如果一個方法沒有使用MethodAopSwitcherAttribute
    特性或使用MethodAopSwitcherAttribute(false)修飾,  

  9. ///  都不會對其進行截獲。只對使用了MethodAopSwitcherAttribute(true)啟用截獲。  

  10. /// 2005.05.11  

  11. ///  

  12. [AttributeUsage(AttributeTargets.Method ,AllowMultiple = false )]  

  13. public class MethodAopSwitcherAttribute : Attribute  

  14. {  

  15. private bool useAspect = false ;  

  16.  

  17. public MethodAopSwitcherAttribute(bool useAop)  

  18. {  

  19. this.useAspect = useAop ;  

  20. }  

  21.  

  22. public bool UseAspect  

  23. {  

  24. get  

  25. {  

  26. return this.useAspect ;  

  27. }  

  28. }  

  29. }  

看完上述內(nèi)容,你們掌握如何進行C#實現(xiàn)AOP微型框架基礎的分析的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


分享題目:如何進行C#實現(xiàn)AOP微型框架基礎的分析
標題網(wǎng)址:http://weahome.cn/article/gejcci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部