Read a json object in a post call and get value from all the name value pairs – Asp.net
JSON parsed to Web API Post Call (Body) { "Name1": "Value1", "Name2": "Value2", "Name3": "Value3", "Name4": "Value4" } Lets call this object NameValueObject public class NameValueObject { public Name1 { get; set; } public Name2 { get; set; } public…