Backend.Controllers.AuthenticationController.SignOut C# (CSharp) Method

SignOut() private method

private SignOut ( ) : Microsoft.AspNetCore.Mvc.ActionResult
return Microsoft.AspNetCore.Mvc.ActionResult
        public ActionResult SignOut() {
            // Instruct the cookies middleware to delete the local cookie created
            // when the user agent is redirected from the external identity provider
            // after a successful authentication flow (e.g Google or Facebook).
            return SignOut("ServerCookie");
        }
    }
AuthenticationController