c# - JArray size reduced to 1000 forcefully -
i'm using newtonsoft
jarray
handle json response seems jarray.count()
limited 1000 always. loss rest of records. there limitation or missing something?
below snippet
//here rsults json response var obj = jobject.parse(results); //this has 6267 in total var records = (jarray)obj["records"]; //this has 6267 in total (int = 0; < records.count(); i++) //this limited 1000 { //more code }
Comments
Post a Comment