У меня есть новый метод в web api
[HttpPost]
public ApiResponse PushMessage( [FromUri] string x, [FromUri] string y, [FromBody] Request Request)
где класс запроса похож на
public class Request
{
public string Message { get; set; }
public bool TestingMode { get; set; }
}
Я делаю запрос к localhost/Pusher/PushMessage? x = foo & y = bar с PostBody:
{ Message: "foobar" , TestingMode:true }
Мне что-то не хватает?