ApiController中的Request.AnonymousID

时间:2013-11-17 02:21:35

标签: c# asp.net-mvc-4 asp.net-web-api

我正在使用MVC 4 Web API和匿名识别模块来识别我的应用程序中购物车的匿名用户。这是我添加到web.config文件中的值:

<anonymousIdentification enabled="true" />

我可以在正常Request.AnonymousID但不是Controller中访问ApiController。我该如何访问?

1 个答案:

答案 0 :(得分:5)

使用声明

添加以下内容
using System.Web;

然后使用:

HttpContext.Current.Request.AnonymousID