我正在替换旧版 Web 服务的控制器中编写操作。问题是我需要使用 C# 关键字 (ref) 作为参数。下面的代码无法编译,因为我使用的是保留字 ref。那么如何设置 WebApi Routing 来处理这个问题呢?
例子:
public class MyController : BaseController
{
[ActionName("RedirectToItem")]
[HttpGet]
public HttpResponseMessage RedirectToItem(int ref)
{
// Do stuff...
}
}
谢谢