摘要: 通常,使用Flash来调用.NET组件需用远程调用,实际上我们也可以通过SOCKET直接通信。具体采用Flash的AMF3或AFM0格式,采用流行的FluorineFx服务器组件,具体代码如下:依照此用法可以开发网页游戏或其它Flash应用的.NET SOCKET服务器。using System;using System.Collections.Generic;using System.Collections.Specialized;using System.Text;using System.Threading;using System.Net.Sockets;using System.Ne 阅读全文
posted @ 2012-03-30 16:24 火腿骑士 阅读(801) 评论(1) 推荐(1) 编辑
摘要: public partial class update : Form { private WebClient client; int downfilenum = 0; //已下载文件数 int downlistnum = 0;//总下载文件数 List<string> list; private string URl; private string fileName; private const string applicationFile = "Setup"; public update() { InitializeComponent(); } //检测网络状 阅读全文
posted @ 2012-03-30 13:27 火腿骑士 阅读(574) 评论(0) 推荐(0) 编辑