方法' CreateResponse'升级Web API后需要2个参数

时间:2016-07-22 08:57:19

标签: asp.net asp.net-mvc asp.net-mvc-4 asp.net-web-api asp.net-web-api2

ASP.NET / Mono MVC 4应用程序已升级到.NET 4.6和新的Web API

在API控制器中,APIController基类已更改为Controller基类。

在那段代码之后

    public class APIBase : Controller
    {
        protected HttpResponseMessage CreateSchedule(int[] selected, char dokument, string subtype)
        {
...
            return Request.CreateResponse(HttpStatusCode.OK, new { Dokumnr = kanne });

        }

抛出编译错误

No overload for method 'CreateResponse' takes 2 arguments   

如何解决这个问题?

0 个答案:

没有答案