コード例 #1
0
        public string GetJsonWebToken(User user)
        {
            _log4net.Info(" GetJsonWebToken method of AuthProvider Called ");
            string token = _authRepo.GenerateJWT(user);

            return(token);
        }
コード例 #2
0
ファイル: AuthService.cs プロジェクト: rohit-kumarr/MfpeAuth
        public string GetJsonWebToken()
        {
            string Token = authRepo.GenerateJWT();

            return(Token);
        }