I am new to using json.net but I am looking to parse the following in to an object
"Properties" :
                                {
                                    "Source": "House",
                                    "Width": 312,
                                    "Height": 190
                                    "ExternalLink": null,
                                    "Link": "#"
                                }
Is is possible to parse the object above in to a IDictionary where the key is for example "Source" and value is "House". I am working with Newtownsoft json.net library.
 
    