按文章结构,这部分应该给出WCFRest项目示例,我想WinForm示例足够详尽了,况且WCFRest还不需要使用插件AppDomain那一套,于是把最近写的Fiddler扩展搬上来吧. Fiddler有一套自成的插件系统,可以在其官方网站找到完整文档(戳这里).通过其提供的一整套接口,我们可以从界面至功能全方位扩展它.这里主题简单,我们只为其添加一个JSON解析界面. PART I:JSON解析 Mgen有一个JSON解析范例(戳这里)代码相当好看,WPF模板绑定也很强大.这里使用Json.c…
动态Json字符串的解析 对于传统的Json字符串,比如有规定属性的对象,通常都会采用反序列化的方式就可以了,例如下面的方式: DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T)); MemoryStream ms = newMemoryStream(Encoding.UTF8.GetBytes(jsonString)); T obj = (T)ser.ReadObject(ms); 但是有时候会出现…
namespace TestConsoleApplication { using System; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; using Microshaoft; using Microshaoft.Share; class Program { static void Main(string[] args) { ; ; // Environment.Processo…
http://blog.csdn.net/lovegonghui/article/details/50293629 一.JObject和JArray序列化 1.实例化JArray和JObject,然后序列化 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using GongHuiNewtonsoft.Json.Linq; namesp…