当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > 一个简单的.net remoting客户端例子

ASP.NET
紧跟潮流:剖折QQ魔法表情实现原理
VB PDU mode 7 bit 解码
在主页面初始化时先打开连接
VB6窗体的生命周期
为.net中的ListBox控件添加双击事件
VB6中ADO流对象实现对二进制大型对象的读取方法
CASSINI源代码分析(4)
Mono开发指南:第一章 Mono介绍
ADO.NET Quiz 之对象序列化
Mono开发指南:第二章 安装Mono
Mono开发指南:第四章 Mono 初览
蛙蛙推荐:C#编码规范.doc
Mono开发指南:第三章 Hello Mono
Additional SOAP Namespaces Referenced In WSE 2.0 SOAP Headers
Mono开发指南:第五章 Gtk#编程
CASSINI源代码分析(5):总结
.Net线程学习手记(1)
关于C#中的结构(下)
如何用C#在Excel中生成图表?
Internet Explorer编程简述(一)

ASP.NET 中的 一个简单的.net remoting客户端例子


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

public static void Main(){ RemotingConfiguration.Configure("Client.exe.config"); RemotableType type1 = new RemotableType(); type1.StringMethod();}对应的IL为:.method public hidebysig static void Main() cil managed{ .entrypoint // Code Size: 24 byte(s) .maxstack 1 .locals ( [RemotableType]RemotableType type1) L_0000: ldstr "Client.exe.config" L_0005: call void [mscorlib]System.Runtime.Remoting.RemotingConfiguration::Configure(string) L_000a: newobj instance void [RemotableType]RemotableType::.ctor() L_000f: stloc.0 L_0010: ldloc.0 L_0011: callvirt instance string [RemotableType]RemotableType::StringMethod() L_0016: pop L_0017: ret }newobj将会调用ActivationServices.IsCurrentContextOK()callvirt将会调用RealProxy.PrivateInvoke()