我正在尝试创建一个使用Windows.Web.Http.HttpClient
发送HTTP操作的通用方法。
该方法包含以下代码:
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage(method, new Uri(URL));
if (!string.IsNullOrEmpty(param))
request.Content = new HttpStringContent(param, UnicodeEncoding.Utf8, "application/json");
HttpResponseMessage response = await client.SendRequestAsync(request);
其中param
是带参数的json字符串,可以为空。
发送请求后,程序会在HRESULT: 0x80072EE7
处抛出异常,但我找不到解决问题的方法。
有什么可能导致这次崩溃的想法? 在此先感谢:)