I have a Web API controller and from there I'm returning an object as JSON from an action.
I'm doing that like this:
public ActionResult GetAllNotificationSettings()
{
    var result = new List<ListItems>();
    // Filling the list with data here...
    // Then I return the list
    return new JsonResult { Data = result };
}
But this way the JsonResult object including its Data attribute is serialized as JSON. So my final JSON that is return by the action looks like this:
{
    "ContentEncoding": null,
    "ContentType": null,
    "Data": {
        "ListItems": [
            {
                "ListId": 2,
                "Name": "John Doe"
            },
            {
                "ListId": 3,
                "Name": "Jane Doe"
            },
        ]
    },
    "JsonRequestBehavior": 1,
    "MaxJsonLength": null,
    "RecursionLimit": null
}
I can't serialize this JSON string because the JsonResult object added all kinds of other properties to it. I'm only interested in ListItems, nothing else. But it automatically added things like: ContentType, MaxJsonLength etc...
Now this won't work for me because of all the other properties in the JSON string...
var myList = JsonConvert.DeserializeObject<List<ListItems>>(jsonString);
Is there a way to send a JSON object from the action so that it won't add all the properties that I dont need?
 
     
     
     
     
     
    