我创建了Api控制器并尝试添加1 api方法但在我的api方法上添加Route属性时出错:
这是我的方法:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using System.Web.Http;
public class MyController : ApiController
{
[AllowAnonymous]
[HttpPost]
[Route("api/abc/Get")] //Getting error :type or namespace Route could not be found
public async Task<object> Get()
{
}
}
但是在路线属性我收到错误:
错误:无法找到类型或命名空间路由