Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use JSON.NET and I would like to parse the following object which I get from a WebService. Can someone post an example on how to do that?

@"{""MessageType"":0,
   ""Message"":""Success"",
   ""Value"":[
              {""listId"":1,
               ""listName"":""DemoList"",
               ""itemInList"":[
                    {
                     ""fromDate"":""\/Date(1228946400000)\/"",
                     ""fromLocation"":null,
                     ""toLocation"":null,
                     ""originalRequest"":""water"",
                     ""creationDate"":""\/Date(1339448400000)\/"",
                     ""typeId"":1
                    },
                    {
                     ""fromDate"":null,
                     ""fromLocation"":null,
                     ""toLocation"":null,
                     ""originalRequest"":""gala"",
                     ""creationDate"":""\/Date(1304370000000)\/"",
                     ""typeId"":1
                    }
              ]}
    ]}"

JSON Object

{
  "MessageType":0,
  "Message":"UserLists",
  "Value":
          [
            {
              "listId":1,
              "listName":"DemoList",
              "itemInList" 
                    [
                      {
                         "fromDate":"\/Date(1228946400000)\/",
                         "fromLocation":null,
                         "toLocation":null,
                         "originalRequest":"water",
                         "creationDate":"\/Date(1339448400000)\/",
                         "typeId":1
                      },
                      {
                         "fromDate":null,
                         "fromLocation":null,
                         "toLocation":null,
                         "originalRequest":"gala",
                         "creationDate":"\/Date(1304370000000)\/",
                         "typeId":1
                       }
                  ],
                  "numberOfItems":2
              }
          ]
     }

Thanks.

share|improve this question
That is the string-literal that would be in C# source for such JSON. It's not so useful to show the string-literal form; if anything is to be shown, show the real JSON value, unless there is a reason to do otherwise. Anyway, after downloading the distributable, read the CHM helpfile that comes with it. – user166390 Apr 1 '12 at 8:53

2 Answers

up vote 6 down vote accepted

You need to create some entity like this:

public class Entity
{
    public int MessageType { get; set; }
    public string Message { get; set; }
    public List<EntityValue> Value { get; set; }
}

public class EntityValue
{
    public int listId { get; set; }
    public string listName { get; set; }
    public List<ItemInList> itemInList { get; set; }
}

public class ItemInList
{
    public DateTime? fromDate { get; set; }
    public string fromLocation { get; set; }
    public string toLocation { get; set; }
    public string originalRequest { get; set; }
    public DateTime creationDate { get; set; }
    public int typeId { get; set; }
}

The entity must has the same structure like the json data. And you can call the Method:

JsonConvert.DeserializeObject<Entity>(json);

If it has any exception,you need to adjust the entities until it works.

share|improve this answer
Thanks, I will try it now! – salamis Apr 1 '12 at 9:09

Please read the below link for parsi in metro style application. http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh770287.aspx

share|improve this answer
Can you summarize the info that you are linking to? – Austin Henley Oct 10 '12 at 22:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.