随笔分类 -  dotnet 中AOP

c#的Aop实现 by zhouwillpower
摘要:using System;   using System.Runtime.Remoting.Messaging ;      namespace EnterpriseServerBase.Aop   {   ///   /// IAopOperator AOP操作符接口,包括前处理和后处理   /// 2005.04.12   ///   public interface IAopOperator   {   void PreProcess(IMessage requestMsg ) ;   void PostProcess(IMessage requestMsg ,IMessage Respond) ;   }    阅读全文

posted @ 2007-03-01 10:32 zhouwillpower 阅读(865) 评论(0) 推荐(0)