gpt4 book ai didi

c# - 在 Visual Studio 中调试时出现底层连接已关闭错误

转载 作者:行者123 更新时间:2023-11-30 23:08:17 25 4
gpt4 key购买 nike

我们正在使用访问 Web API REST Web 服务的 Web API 客户端。

调试时调用此方法时出现以下错误:

An error occured while sending the request (Inner Exception: The underlying conection was closed: An unexpected error occured on a send)

这只会在 Visual Studio 2015 中调试时发生。在没有调试的情况下运行代码时不会发生。我们正在使用.NET 4.6.1。

为什么会这样?为什么不调试就运行,调试就崩溃。您对我们如何解决这个问题以及我们可以检查什么有什么想法吗?

我们使用以下代码进行网络服务调用:

    public async Task<string> GetToken(string username, string password)
{
using (var client = new HttpClient())
{
InitializeHttpClient(client);

HttpContent requestContent = new StringContent("grant_type=password&username=" + username + "&password=" + password, Encoding.UTF8, "application/x-www-form-urlencoded");

var response = await client.PostAsync("token", requestContent);

if (response == null || response.StatusCode == HttpStatusCode.BadRequest)
return null;

if (response.StatusCode == HttpStatusCode.NotFound
|| response.StatusCode == HttpStatusCode.RequestTimeout
|| response.StatusCode == HttpStatusCode.BadGateway
|| response.StatusCode == HttpStatusCode.ServiceUnavailable)
{
throw new Exception("No Connection to Web Service");
}

var bearerData = response.Content.ReadAsStringAsync().Result;

return JObject.Parse(bearerData)["access_token"].ToString();
}
}


private void InitializeHttpClient(HttpClient client)
{
client.BaseAddress = new Uri(_webServiceAddress);
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Add("User-Agent", "Test Client");
}

private void InitializeHttpClient(HttpClient client, string token)
{
InitializeHttpClient(client);
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("bearer", token);

}

最佳答案

这似乎是由 Windows Update KB4041083 引起的。我们卸载了这个更新,然后一切又恢复正常了。

关于c# - 在 Visual Studio 中调试时出现底层连接已关闭错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46649455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com