- 1、本文档共4页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 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
您可能关注的文档
- 屋面防水工程质量与安全技术要求.ppt
- 逻辑学作业4.doc
- 浅谈地面一次抹光成活施工技术.doc
- 第三章学案5随机数的含义与应用.ppt
- Zigbee无线路灯照明控制系统方案.doc
- 31.阅读理解题分类汇编.doc
- 初中化学上册全本基础知识检测.doc
- 端口配置命令.doc
- 九年级英语上学期期末复习策略及计划.doc
- 第四章mst和hsrp.ppt
- 人教版九年级英语全一册单元速记•巧练Unit13【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit9【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit11【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit14【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit8【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit4【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit13【单元测试·基础卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit7【速记清单】(原卷版+解析).docx
- 苏教版五年级上册数学分层作业设计 2.2 三角形的面积(附答案).docx
- 人教版九年级英语全一册单元速记•巧练Unit12【单元测试·基础卷】(原卷版+解析).docx
文档评论(0)