json序列化引用模式

时间:2016-07-29 23:30:14

标签: json json.net

我将一个对象序列化为一个json。

string output = JsonConvert.SerializeObject(item) 

public class Item
{
    public int name;
    public string category;
}

output 
[ 
    { 
      "Name": "Item1", 
      "category": "Free", 
     }, 
] 

在序列化字符串中我想要引用为json文件定义的模式

output 
[ 
    { 
      "$schema": "http://www.example.com/itemModel.json#",
      "Name": "Item1", 
      "category": "Free", 
     }, 
] 

0 个答案:

没有答案