I have a controller action
public class MyController : SitecoreController
{
[AllowCrossSiteJson]
public JsonResult AddSubscriptionsJson(string pipeDelimitedMailingListIds,
string email)
{
...
}
}
I know i can get the action Url using
Url.Action("AddSubscriptionsJson","MyController")
Is there a way to get the available parameters through code? In say an array / list of string?
Like this?
["pipeDelimitedMailingListIds","email"]