AIMS_BD_IATI.WebAPI.Controllers.AuthenticationController.Logout C# (CSharp) Méthode

Logout() private méthode

private Logout ( ) : bool
Résultat bool
        public bool Logout()
        {
            HttpContext.Current.Session.Clear();
            HttpContext.Current.Session.Abandon();
            return true;
        }
AuthenticationController