最近常有网友问我关于Remoting事件的问题,我也正好有些时间,于是决定写两篇关于Remoting事件的入门随笔,希望对新手有所帮助..谢谢

随笔一:客户端触发服务器端事件

通讯类:

Remoting事件序列一:客户端触发服务器端事件using System;
Remoting事件序列一:客户端触发服务器端事件
using System.Collections; 
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Tcp;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Http;
Remoting事件序列一:客户端触发服务器端事件
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Serialization.Formatters; 
Remoting事件序列一:客户端触发服务器端事件
Remoting事件序列一:客户端触发服务器端事件
namespace RemotingSamples 

服务器端代码:
Remoting事件序列一:客户端触发服务器端事件using System;
Remoting事件序列一:客户端触发服务器端事件
using System.Collections; 
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Tcp;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Http;
Remoting事件序列一:客户端触发服务器端事件
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Serialization.Formatters; 
Remoting事件序列一:客户端触发服务器端事件
Remoting事件序列一:客户端触发服务器端事件
namespace RemotingSamples 

客户端代码:
Remoting事件序列一:客户端触发服务器端事件using System;
Remoting事件序列一:客户端触发服务器端事件
using System.Collections; 
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Tcp;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Remoting.Channels.Http;
Remoting事件序列一:客户端触发服务器端事件
using System.IO;
Remoting事件序列一:客户端触发服务器端事件
using System.Runtime.Serialization.Formatters; 
Remoting事件序列一:客户端触发服务器端事件
Remoting事件序列一:客户端触发服务器端事件
namespace RemotingSamples 
}


代码很简单,我就不做描述了,有问题直接留言,我会尽快做出回复..

相关文章: