当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > System.Runtime.Remoting.Activation.ActivationServices.CreateInstance()

ASP.NET
运行时修改Web.config中的元素值
优秀的Architect之路(入门)
提问的智慧(HowToAskQuestionsTheSmartWay)
C#数据结构篇(3队列类)
现在就可下载WTL7.0和.NETSP1
在.NET中开发组件
使用.NET远程处理访问其他应用程序域中的对象
使用ADO.NET访问数据库
承载.NET公共语言运行库
在.NET运行时了解类型信息(2)
在.NET运行时了解类型信息(3)
智能客户端(SmartClient)
获取数据库表结构
Visual Studio 2005 分包下载
为DataGrid中的行增加序号
关于HttpContext的Items属性
[推荐].NET XML Best Practices - Choosing an XML API
在 XML Schema和WSDL中使用名称空间
在论坛里为什么不能发问题
AspectSharp例子分析

ASP.NET 中的 System.Runtime.Remoting.Activation.ActivationServices.CreateInstance()


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 117 ::
收藏到网摘: n/a

internal static MarshalByRefObject CreateInstance(Type serverType){ RemotingProxy proxy1; MarshalByRefObject obj1 = null; ConstructorCallMessage message1 = null; bool flag1 = ActivationServices.IsCurrentContextOK(serverType, (object[]) null, ref message1); if (flag1 && !serverType.IsContextful) { return RemotingServices.AllocateUninitializedObject(serverType); } obj1 = (MarshalByRefObject) ActivationServices.ConnectIfNecessary(message1); if (obj1 == null) { proxy1 = new RemotingProxy(serverType); obj1 = (MarshalByRefObject) proxy1.GetTransparentProxy(); } else { proxy1 = (RemotingProxy) RemotingServices.GetRealProxy(obj1); } proxy1.ConstructorMessage = message1; if (!flag1) { ContextLevelActivator activator1 = new ContextLevelActivator(); activator1.NextActivator = message1.Activator; message1.Activator = activator1; return obj1; } message1.ActivateInContext = true; return obj1;}