91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行C#實現AOP微型框架基礎的分析

發布時間:2021-11-23 23:24:12 來源:億速云 閱讀:181 作者:柒染 欄目:編程語言

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

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

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

AOP的最基本功能就是實現特定的預處理和后處理,我通過代理讓C#實現AOP微型框架。先來看看構成此微型框架的.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. /// <summary> 

  9. /// AopProxyAttribute  

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

  11. /// 2005.04.11  

  12. /// </summary> 

  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. /// <summary> 

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

  27. /// </summary> 

  28. public override MarshalByRefObject CreateInstance(Type serverType)

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

  30. {  

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

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

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

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

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

  36. //Activator.CreateInstance在調用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. /// <summary> 

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

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

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

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

  10. /// 2005.05.11  

  11. /// </summary> 

  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. }  

看完上述內容,你們掌握如何進行C#實現AOP微型框架基礎的分析的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

aop
AI

蛟河市| 玉龙| 雅安市| 四子王旗| 虎林市| 河津市| 教育| 兴海县| 石嘴山市| 射洪县| 朝阳区| 离岛区| 聂荣县| 静乐县| 遂平县| 东方市| 环江| 习水县| 洪泽县| 苍梧县| 东阿县| 富源县| 平原县| 齐河县| 霞浦县| 西乌珠穆沁旗| 博客| 育儿| 罗城| 南雄市| 建瓯市| 望都县| 长宁县| 嘉善县| 曲麻莱县| 柘城县| 竹北市| 高安市| 革吉县| 鄂伦春自治旗| 青阳县|