Answers for "how to read json response in c#"

2

c# get value from json object

using System;
using Newtonsoft.Json.Linq;

namespace testClient
{
    class Program
    {
        static void Main()
        {
            var myJsonString = "{report: {Id: \"aaakkj98898983\"}}";
            var jo = JObject.Parse(myJsonString);
            var id = jo["report"]["Id"].ToString();
            Console.WriteLine(id);
            Console.Read();
        }
    }
}
Posted by: Guest on June-11-2021
2

how to read json file in C#

//For any of the JSON parse, use the website 
//http://json2csharp.com/ 
//(easiest way) to convert your JSON into 
//C# class to deserialize your JSON into C# object.

public class FormatClass
{
	public string JsonName { get; set; }      
	public string JsonPass { get; set; }      
}
//Then use the JavaScriptSerializer (from System.Web.Script.Serialization),
// in case you don't want any third party DLL like newtonsoft.
public void Read()
{
  	using (StreamReader Filejosn = new StreamReader("Path.json"))
	{
   		JavaScriptSerializer jss = new JavaScriptSerializer();
   		var Items = jss.Deserialize<FormatClass>(Filejosn.ReadToEnd());
  		// Add Code here :)
	}
}
//by ahmed ashraf +201111490105
Posted by: Guest on October-16-2020

Code answers related to "how to read json response in c#"

Code answers related to "Javascript"

Browse Popular Code Answers by Language