0
コントローラメソッドからポスト変数を読み取れるようにしたいと思います。WebApi - 私の投稿変数はいつもnullですか?
私は現在、以下のコードを持っている:私はテストするために、次のコードを使用してい
[HttpPost]
public IHttpActionResult BuildPartitions([FromBody]string PartitionBuildDate)
{
}
:オンライン探し
using (HttpClient httpClient = new HttpClient())
{
var values = new Dictionary<string, string>
{
{ "PartitionBuildDate", "24-May-2017" }
};
var content = new FormUrlEncodedContent(values);
var response = httpClient.PostAsync("http://localhost:55974/api/Controller/BuildPartitions", content);
var responseString = response.Result.Content;
}
を、これはでポスト変数を送信および受信の両方のために正しく見えますC#を使用しますが、PartitionBuildDate変数は常にnullです。