Answer the question
In order to leave comments, you need to log in
How do I convert my JSON to a collection?
Here is the code for getting data in JSON format from the server:
string result;
var httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
httpWebRequest.ContentType = @"application/json;charset=UTF-8";
httpWebRequest.Method = "GET";
var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream(), Encoding.UTF8))
{
result = streamReader.ReadToEnd();
}
[
[
1,
"News1",
"Здесь текст 1",
1602334730,
"/root"
],
[
2,
"News2",
"Здесь текст 2",
1602335010,
"None"
],
[
3,
"News2",
"Здесь текст 3",
1603464032,
"/root"
]
]
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question