コード例 #1
0
            async public Task <AuthUserDto> LocalLogin(string email, string password)
            {
                _config.ApiClient.RestClient.CookieContainer = new System.Net.CookieContainer();
                var response = await Auth.AuthControllerLocalLoginAsync(new AuthLoginDto(email, password));

                return(response);
            }