您好,登錄后才能下訂單哦!
如何進行C#實現AOP微型框架基礎的分析,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
在向大家詳細介紹C#實現AOP微型框架之前,首先讓大家了解下微型框架的.cs文件,然后全面介紹C#實現AOP微型框架。
在前面的系列文章中,我介紹了消息、代理與AOP的關系,這次將我自己用C#實現AOP微型框架拿出來和大家交流一下。
AOP的最基本功能就是實現特定的預處理和后處理,我通過代理讓C#實現AOP微型框架。先來看看構成此微型框架的.cs文件。
1. AopProxyAttribute AOP代理特性
using System;
using System.Runtime.Remoting ;
using System.Runtime.Remoting.Proxies ;
namespace EnterpriseServerBase.Aop
{
/// <summary>
/// AopProxyAttribute
/// AOP代理特性,如果一個類想實現具體的AOP,
只要實現AopProxyBase和IAopProxyFactory,然后加上該特性即可。/// 2005.04.11
/// </summary>
[AttributeUsage(AttributeTargets.Class ,AllowMultiple = false)]
public class AopProxyAttribute : ProxyAttribute
{
private IAopProxyFactory proxyFactory = null ;
public AopProxyAttribute(Type factoryType)
{
this.proxyFactory = (IAopProxyFactory)Activator.CreateInstance(factoryType) ;
}
#region CreateInstance
/// <summary>
/// 獲得目標對象的自定義透明代理
/// </summary>
public override MarshalByRefObject CreateInstance(Type serverType)
//serverType是被AopProxyAttribute修飾的類
{
//未初始化的實例的默認透明代理
MarshalByRefObject target = base.CreateInstance (serverType);
//得到位初始化的實例(ctor未執行)
object[] args = {target ,serverType} ;
//AopProxyBase rp = (AopProxyBase)Activator.CreateInstance(this.realProxyType ,args) ;
//Activator.CreateInstance在調用ctor時通過了代理,所以此處將會失敗
//得到自定義的真實代理
AopProxyBase rp = this.proxyFactory.CreateAopProxyInstance(target ,serverType) ;
//new AopControlProxy(target ,serverType) ;
return (MarshalByRefObject)rp.GetTransparentProxy() ;
}
#endregion
}
}
2 .MethodAopSwitcherAttribute.cs
using System;
namespace EnterpriseServerBase.Aop
{
/// <summary>
/// MethodAopSwitcherAttribute
用于決定一個被AopProxyAttribute修飾的class的某個特定方法是否啟用截獲 。/// 創建原因:絕大多數時候我們只希望對某個類的一部分Method而不是所有Method使用截獲。
/// 使用方法:如果一個方法沒有使用MethodAopSwitcherAttribute
特性或使用MethodAopSwitcherAttribute(false)修飾,/// 都不會對其進行截獲。只對使用了MethodAopSwitcherAttribute(true)啟用截獲。
/// 2005.05.11
/// </summary>
[AttributeUsage(AttributeTargets.Method ,AllowMultiple = false )]
public class MethodAopSwitcherAttribute : Attribute
{
private bool useAspect = false ;
public MethodAopSwitcherAttribute(bool useAop)
{
this.useAspect = useAop ;
}
public bool UseAspect
{
get
{
return this.useAspect ;
}
}
}
}
看完上述內容,你們掌握如何進行C#實現AOP微型框架基礎的分析的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。