This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Description
Is it possible to post by multiple parameters or we have to still create transport objects?
[HttpPost]
public string PostMultipleSimpleValues(string name, int age, DateTime entered, string action = null)
{
return string.Format("Name: {0}, Age: {1}, Date: {2}, Action: {3}", name, age, entered, action);
}