application/json
または、カスタム プロパティ名バインディングにapplication/xml
使用できます。DataContract
[HttpPost]
public string Method([FromBody]Model request)
{
}
[DataContract]
public class Model
{
[DataMember(Name="custom_name")]
public string CustomName { get; set; }
}
DataContract
または何か他のものを使用するにはどうすればよいapplication/x-www-form-urlencoded
ですか?