这是我的方法:
private static void UpdatePref(List<EmailPrefer> prefList)
{
if(prefList.Count > 0)
{
foreach (EmailPref pref in prefList)
{
UpdateEmailRequest updateRequest = new UpdateEmailRequest(pref.ID.ToString(), pref.Email, pref.ListID.ToString());
UpdateEmailResponse updateResponse =(UpdateEmailResponse) updateRequest.SendRequest();
if (updateResponse.Success)
{
Console.WriteLine(String.Format("Update Succsesful. ListID:{0} Email:{2} ID:{1}", pref.ListID, pref.Email, pref.ID));
continue;
}
Console.WriteLine( String.Format("Update Unsuccessful. ListID:{0} Email:{2} ID:{1}\n", pref.ListID, pref.Email, pref.ID));
Console.WriteLine(String.Format("Error:{0}", updateResponse.ErrorMessage));
}
Console.WriteLine("Updates Complete.");
}
Console.WriteLine("Procses ended. No records found to update");
}
该列表有大约 84 条有效记录,它正在循环并发送 API 请求。但它在第 3 次 API 调用时停止,仅处理 84 条记录中的 2 条。当我调试以查看发生了什么时,我只看到它在我的 SendRequest 方法中停止,而没有吐出任何错误。它在 GetRequestStream 处停止,当我走到那里并尝试继续前进时,它就停止了,我的应用程序停止运行而没有任何错误!
HttpWebRequest request = CreateWebRequest(requestURI, data.Length);
request.ContentLength = data.Length;
request.KeepAlive = false;
request.Timeout = 30000;
// Send the Request
requestStream = request.GetRequestStream();
什么?最终,如果我让它继续运行,我确实会收到错误“操作已超时”。但是,为什么前 2 个调用通过而这个超时呢?我不明白。
另外,第二个问题。让它在我的 foreach 中创建一个新对象用于发送和接收是否效率低下?但这就是我删除这些类的方式,并要求电子邮件、ListID 等是发送该类型 API 调用的必要条件。我只是不知道通过 foreach 中的每次迭代创建一个新实例是否有效。可能很常见,但对我来说只是觉得奇怪和低效。