The below code are simplified to show the necessity. May I know what is wrong? I can\'t seems to retrieve two Parameters (A and B in this case) using the [FromBody] attribut
[DataContract]
public class Model
{
[DataMember]
public int A { get; set; }
[DataMember]
public int B { get; set; }
}
[Route("API/Test"), HttpPost]
public IHttpActionResult Test([FromUri] Model model)