Is there any order or pattern that action parameters in an MVC controller follow. For example:
[HttpPost]
public ActionResult AddFiles(HttpPostedFileBase file, int catid, string description)
How does the controller know that this certain post parameter is for catid and so on.