ContextAttribute与ContextBoundObject应用开发.doc

ContextAttribute与ContextBoundObject应用开发.doc

  1. 1、本文档共4页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
ContextAttribute与ContextBoundObject应用开发

这两天因开发的需要,需要分析和构建针对ContextAttribute极其ContextBoundContext相关的拦截器的内容,所以今天一上班就开发分析ContextAttribute与ContextBoundContext之间的应用关系,在查看了相关网友的资源后开始了我的分析之路。 首先:我建立了一个ContextAttribute的子类和一个普通的Attribute子类,分别附加在ContextBoundContext子类和普通子类上。代码如下: using System; using System.Collections.Generic; using System.Text; using System.Runtime.Remoting.Contexts; using System.Runtime.Remoting.Activation; namespace ContextDemo { public class DemoContextAttribute : ContextAttribute { public DemoContextAttribute() : base ( DemoContextAttribute ) { Console.WriteLine( Call DemoContextAttribute - Constructor ); } } public class NonContextAttribute : Attribute { public NonContextAttribute() { Console.WriteLine( Call NonContextAttribute - Constructor ); } } [DemoContext] [NonContext] public class DemoContextBoundObject : ContextBoundObject { public DemoContextBoundObject() { Console.WriteLine( Call DemoContextBoundObject - Constructor ); } } [DemoContext] [NonContext] public class NonContextBoundObject { public NonContextBoundObject() { Console.WriteLine( Call NonContextBoundObject - Constructor ); } } class Program { static void Main( string [] args) { Console.WriteLine( Begin Main ); DemoContextBoundObject dcbo = new DemoContextBoundObject(); NonContextBoundObject ncbo = new NonContextBoundObject(); Console.WriteLine( End Main ); Console.Read(); } } } 执行的结果如下: 这里可以看出,只有继承于ContextAttribute的子类在ContextBoundObject上使用才会进行构造。其实都没有进行调用。 然后: 我将ContextAttribute之下的虚方法都进行了一次继承并且添加相应的查看信息来分析各个方法的调用顺序,代码如下: using System; using System.Collectio

文档评论(0)

xy88118 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档