I try to do a recursive parse but it doesn't work, it only parse the first title.
I already tried that: C# parse recursive json but it didn't work.
I also tried a parse with Regex but it didn't work either, it only captures the first title.
So I'm hoping you can help me solve the problem that's been blocking my progress :/
My Json
{
"data":{
"count":[
],
"list":[
{
"title":"new doc 4",
"rotate":0,
"sort_key":"new doc 4",
"tag_ids":"",
"doc_id":"ee4DM4Ly7CFBM3JFWAW60TUX",
"co_token":"",
"p":"XQXLDEQyA2hf6BBfyXhSaUHL",
"t":"1474932063",
"c":"2",
"updated":"1474932063"
},
{
"title":"new doc 5",
"rotate":0,
"sort_key":"new doc 5",
"tag_ids":"",
"doc_id":"Xy67QdRhTR9XS159WLyCCTbK",
"co_token":"",
"p":"XadS23UUQbQRQt9gLPWDWTAQ",
"t":"1474932060",
"c":"1",
"updated":"1474932061"
},
{
"title":"new doc 6",
"rotate":0,
"sort_key":"new doc 6",
"tag_ids":"",
"doc_id":"Q4W55XLA1AeERUJHaVN7EF80",
"co_token":"",
"p":"T6BYAMKXNa086Tb4FaYd4rV1",
"t":"1474932059",
"c":"1",
"updated":"1474932059"
},
{
"title":"new doc 7",
"rotate":0,
"sort_key":"new doc 7",
"tag_ids":"",
"doc_id":"9heQFfeYFUFXb536VTyHLhKL",
"co_token":"",
"p":"BeFULN12QL6H9L5HXCAYfH1S",
"t":"1474932056",
"c":"2",
"updated":"1474932056"
},
{
"title":"new doc 8",
"rotate":0,
"sort_key":"new doc 8",
"tag_ids":"",
"doc_id":"H7eXd1yTfFAY2V8ha3a6FS9K",
"co_token":"",
"p":"LJVyNVCPMbXH2abMMbb6BRYN",
"t":"1474932053",
"c":"1",
"updated":"1474932053"
},
{
"title":"new doc 9",
"rotate":0,
"sort_key":"new doc 9",
"tag_ids":"",
"doc_id":"3VVL56tQDXf73V8UKXrNX0d0",
"co_token":"",
"p":"rV2H7WWCRy1Vrb0PaU1TQKTD",
"t":"1474932047",
"c":"3",
"updated":"1474932049"
},
{
"title":"new doc 10",
"rotate":0,
"sort_key":"new doc 10",
"tag_ids":"",
"doc_id":"4TBabHAKNRXdREJXNdWfQEWF",
"co_token":"",
"p":"TR7Dt89gV3hfSJBTDQ1JQP72",
"t":"1474402937",
"c":"1",
"updated":"1474402937"
},
{
"title":"new doc 11",
"rotate":0,
"sort_key":"new doc 11",
"tag_ids":"",
"doc_id":"TV4fBdehY4fFHN00g082QDKX",
"co_token":"",
"p":"SCUPQ9bW6BgTT9JAP4K2WCYU",
"t":"1474402932",
"c":"3",
"updated":"1474402932"
},
{
"title":"new doc 12",
"rotate":0,
"sort_key":"new doc 12",
"tag_ids":"",
"doc_id":"M8fHK8gQB3FWUEeLKQMdUaFB",
"co_token":"",
"p":"BPDTg3aTTDELyFUA1WK0M2rA",
"t":"1474402911",
"c":"7",
"updated":"1474402913"
},
{
"title":"new doc",
"rotate":0,
"sort_key":"new doc",
"tag_ids":"",
"doc_id":"ayCK8RrHSe796g4PSNRgMD5N",
"co_token":"",
"p":"Y46RWJFb0XJRHtKy6B077Me1",
"t":"1389379718",
"c":"1",
"updated":"1389379718"
}
],
}
}