次のようにリソースにアクセスしたい:
/api/adddevice/12345
このルートで間違っているのは何ですか?
routes.MapRoute(
name: "AddDevice",
url: "adddevice/{id}",
defaults: new { controller = "some controller", action = "adddevice", id = UrlParameter.Optional }
);
public string AddDevice(int id)
{
return "Device " + id.ToString() + " succesfully added";
}
編集
エラーの詳細は次のとおりです。
<MessageDetail>
No type was found that matches the controller named 'some controller'.
</MessageDetail>