So I'm somewhat new to MVC but am pretty familiar with C#. I'm in the unique position of needing to create AJAX queries to hit controller functions that I haven't written. These controller functions take all sorts of inputs (strings, ints, objects, lists, dictionaries) and I'm having a really tough time finding resources that depict how different types of objects are supplied in the HTTP request.
Basically, does anyone know of any resources that show the HTTP requests for various types of arguments to MVC controllers? For instance, a resource that says something like "here's how a dictionary is supplied to a controller via both HTTP GET and POST "
Much appreciated!