如何用C#分析AOP微框架的基础,相信很多没有经验的人都不知所措。因此,本文总结了出现问题的原因和解决方法,希望大家可以通过这篇文章来解决这个问题。
在向大家详细介绍C#实现的AOP的微框架之前,让大家了解一下。cs文件的微框架,然后全面介绍用C#实现的AOP的微框架。
在前面的系列文章中,我介绍了消息、代理和AOP之间的关系。这次我就拿出自己用C#编写的AOP微框架和大家分享一下。
AOP最基本的功能是实现特定的前处理和后处理。我让C#通过代理实现了AOP微框架。让我们来看看。组成这个小框架的cs文件。
1. AopProxyAttribute AOP代理特性
使用系统;
使用System。运行时。远程处理;
使用System。运行时。远程处理。代理;
namespaceEnterpriseServerBase。面向切面编程(Aspect Oriented Programming的缩写)
{
///summary
///AoproxyAttribute
///AOP代理特性,如果一个类想要实现特定的AOP,
只需实现AopProxyBase和IAopProxyFactory,然后添加这个特性。
///2005.04.11
////summary
[属性用法(属性目标。类,AllowMultiple=false)]
public class aoapproxyattributes : proxyattribute
{
privateiaoproxyfactoryproxyfactory=null;
publicAopProxyAttribute(类型因子类型)
{
this . proxy factory=(iaoproxyfactory)Activator。create instance(factory type);
}
#regionCreateInstance
///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微型框架基础的分析的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注行业资讯频道,感谢各位的阅读!
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/113747.html