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
浙公网安备 33010602011771号