出於某種原因,Request.CreateResponse
現在是在VS2012的「紅」,當我將鼠標懸停在使用的IDE說網頁API Request.CreateResponse HttpResponseMessage沒有智能感知VS2012
無法解析符號「CreateResponse」
這裏是ApiController類:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Web.Http.Filters;
using GOCApi.Attributes;
using GOCApi.Models;
using GOCApi.Models.Abstract;
using AttributeRouting;
using AttributeRouting.Web.Http;
namespace GOCApi.Controllers
{
[RoutePrefix("Courses")]
public class CoursesController : ApiController
{
private ICoursesRepository _coursesRepository { get; set; }
public CoursesController(ICoursesRepository coursesRepository)
{
_coursesRepository = coursesRepository;
}
[GET("{id}")]
public HttpResponseMessage Get(int id)
{
var course = _coursesRepository.GetSingle(id);
if (course == null)
return Request.CreateResponse(HttpStatusCode.NotFound, "Invalid ID");
return Request.CreateResponse(HttpStatusCode.OK, course);
}
}
}
當然,代碼中並編譯和作品,它只是真的很煩看到所有的我的屏幕上顯示「紅色」。此外,當我輸入Request.CreateResponse
時,智能感知功能現在不起作用。這也用於工作,但我開始開發其他部分到我的API,並剛回到樓宇控制器,所以我不知道發生了什麼。
有什麼想法?
它對我來說很重要,它回來的方式是關閉VS並重新打開它,煩惱我必須忍受,希望不會太久。 – 2013-04-04 16:00:52
@von v。我試過了,沒有運氣:/ – crizzwald 2013-04-04 16:05:18
確保文件構建操作屬性設置爲「編譯」而不是「內容」。 – StingyJack 2013-07-15 22:28:53