随笔分类 -  WindowsPhone

WindowsPhone与服务器通信
摘要:与其他平台一样,WindowsPhone与服务器通信有两种方式:1.Socket方式:主要用在需要长链接的应用里边,上传文件等IO操作时使用2.http方式:绝大多数应用采用的方式,通过访问服务器接口,解析服务器返回的json或者xml等数据本文主要介绍http方式using System;using System.IO;using System.Net;using System.Text;using System.Threading;using System.Windows;namespace Phone.Common{ public class Http { pu... 阅读全文

posted @ 2012-12-27 18:13 菜鸟的春天 阅读(473) 评论(0) 推荐(0)

导航