I'm able to return a stringified Javascript object to my C# project. The string looks like this:
{"QuestionId":"","QuestionTitle":"hiu","OriginalURL":"","OriginalTitle":"","ChronicID":""}
How can I easily convert this to an Object with these parameters in C#?
UPDATE: I got it working. See code below.
SearchQuery search = (SearchQuery)JsonConvert.DeserializeObject(@filterParams, typeof(SearchQuery));