AIMS_BD_IATI.WebAPI.Controllers.AuthenticationController.Logout C# (CSharp) Method

Logout() private method

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