首页 > 代码库 > C#制作一个消息拦截器(intercept)4
C#制作一个消息拦截器(intercept)4
ok,我们拦截器基本构造完成,接下来我来告诉大家如何去使用。
注意一个问题,object拦截器我们要拦截什么,那么我们就要在需要拦截的类上面做手脚了。
首先,创建我们需要被拦截的类。
然后,我们再对类进行相应的包装:
1、该类要标记InterceptAttribute属性
2、该类要继承ContextBoundObject,只有继承ContextBoundObject的类,vs才能知道该类需要访问Context,这样标记的InterceptAttribute才有效。
/// <summary> /// If you want to add the interceptpool on this class , the class need to do: /// 1、inherited form ContextBoundObject. /// 2、mark the InterceptAttribute. /// </summary> [Intercept] public class SimonDemo:ContextBoundObject { public SimonDemo() { Console.WriteLine(" Call 'SimonDemo' - 'Constructor' "); } public void Operate1() { Console.WriteLine("Call 'SimonDemo' - 'Operate1' "); } }
然后,我们在Main函数中创建一个该类的对象,并进行调用方法。
class Program { static void Main(string[] args) { Console.WriteLine("Call Main .."); SimonDemo simon = new SimonDemo(); simon.Operate1(); Console.WriteLine("exit Main .."); Console.Read(); } }
这样,通过调试,我们就可以看出拦截器都拦截出了什么
接下来是运行结果:
这样可以看出我的程序拦截,并输出了调用函数的名字。
在此仅提供一种方法,其余的使用方法有待研究。
写到这里我的拦截器实现完了,小弟了解尚浅,如有错误请高手们留言指出。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。