Web Api Session开启会话支持

 
 
1、WebApi中默认是没有开启Session会话支持的。需要在Global中重写Init方法来指定会话需要支持的类型
 
 
 
 
 
//代码如下
public override void Init()
{
this.PostAuthenticateRequest += (sender, e) => HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
base.Init();
}
posted @ 2016-12-30 15:22  weijievvv  阅读(246)  评论(0编辑  收藏  举报