コード例 #1
0
        private ActionResult OAuthLogout()
        {
            var authenticationInfo = _oAuthProvider.GetAuthenticationInfo()
                                     _oAuthProvider.Logout();

            _logger.Info(string.Format(UserHasLoggedOutMessage, authenticationInfo.UserName));
            return(RedirectToLastPage());
        }