I am posting to API and get a response
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
var responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
var jsonResponse = JsonConvert.SerializeObject(responseString , Formatting.Indented);
and this is the value of jsonResponse :
"{\"Id\":333,
\"Name\":\"TestProduct\",
\"ApplicationId\":\"9edcc30d-7852-4c95-a6b2-1bf370655965\",
\"Features\":[{
\"Id\":301,
\"Name\":\"Sodalis Mobile Client2.0\",
\"Code\":\"Beeware.Sodalis.Mobile\",
\"ProductId\":0,
\"Selected\":null}]
}"
how can I read each filed ?
like Name , ApplicationId , Features-Name and Features-Code.
I would appreciate any help.