摘要: HTTP works as a request-response protocol between a client and server.A web browser may be the client, and an application on a computer that hosts a web site may be the server.Example: A client (browser) submits an HTTP request to the server; then the server returns a response to the client. The res 阅读全文
posted @ 2013-10-11 11:39 MinieGoGo 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1. get JSON responses and go to : http://json2csharp.com/2. write data contracts using C#All classes need to have a DataContract attribute, and all public properties that are to be serialized need to have a DataMember attribute, and both a getter and a setter in C#using System.Runtime.Serialization. 阅读全文
posted @ 2013-10-11 06:05 MinieGoGo 阅读(310) 评论(0) 推荐(0) 编辑