2017-02-18 93 views
1

我在我的代碼有HttpContext.Current.Session["CurrentUser"] = user;的地方,並在註銷我有這個當AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie); HttpContext.Current.Session被破壞時。

public ActionResult LogOff() 
{ 
      AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie); 
      return RedirectToAction("Index", "Home"); 
} 

我只是想確保當我註銷HttpContext.Current.Session也destoyed。如果不是那麼它如何摧毀它?

+0

[MSDN](https://msdn.microsoft.com/en-us/library/ms178581.aspx)建議呼叫會話放棄'()'後註銷。請參閱鏈接中的第三個註釋。 –

回答