我正在关注本教程,并且在尝试编写此方法时遇到了困难:
public HttpResponseMessage PostProduct(Product item)
{
item = repository.Add(item);
var response = Request.CreateResponse<Product>(HttpStatusCode.Created, item);
string uri = Url.Link("DefaultApi", new { id = item.Id });
response.Headers.Location = new Uri(uri);
return response;
}
对象是什么命名空间
Request
?和 HTTPRequest 一样吗?如果是这样,那么为什么 Intellisense 不能帮助我完成它?(我得到未知的方法)URL.Link
对象/方法是什么命名空间?
我在 Bing 和 Google 中搜索了这些对象,但找不到与 Voice/SIP 无关的任何与 WepAPI 无关的内容