升级Web API后,方法'CreateResponse'没有重载需要2个参数

And*_*rus 6 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 });

        }
Run Code Online (Sandbox Code Playgroud)

抛出编译错误

No overload for method 'CreateResponse' takes 2 arguments   
Run Code Online (Sandbox Code Playgroud)

如何解决这个问题?