如何在ServiceStack中获取cookie

时间:2016-07-18 13:38:28

标签: c# servicestack

我一直在尝试在servicestack中读取一个cookie但是得到了

  

“类型'Cookie'在未引用的程序集中定义。   您必须添加对程序集的引用...“

我有alredy添加了System.Web参考!但仍然得到相同的错误。因此,如果我在错误的方式,在ServiceStack中读取cookie的方式是什么?

 public class SocialAccountService : ServiceStack.Service
    {
        private static readonly ILog logger = LogManager.GetLogger(typeof(SocialAccountService));
        public SocialAccountService()
        {

        }
        public object Any(SocialAccount req_account)
        {
            var cookie = base.Request.Cookies[""];
            ControllerAuthorizationProxy<SocialAccount>.Any(new SocialAccountController(req_account), this);
            return null;
        }

    }
  

ServiceStack,版本= 4.0.0.0

1 个答案:

答案 0 :(得分:3)

Visual Studio说您需要添加对System.Net的引用。我想你的“......”也是这样说的。