C#超时后中止异步HttpWebRequest

时间:2018-09-18 15:52:10

标签: c# httpwebrequest cancellation-token

我在这里https://stackoverflow.com/a/19215782/4332018找到了将CancellationTokenasync HttpWebRequest结合使用的好方法:

public static class Extensions
{
    public static async Task<HttpWebResponse> GetResponseAsync(this HttpWebRequest request, CancellationToken ct)
    {
        using (ct.Register(() => request.Abort(), useSynchronizationContext: false))
        {
            try
            {
                var response = await request.GetResponseAsync();
                return (HttpWebResponse)response;
            }
            catch (WebException ex)
            {
                // WebException is thrown when request.Abort() is called,
                // but there may be many other reasons,
                // propagate the WebException to the caller correctly
                if (ct.IsCancellationRequested)
                {
                    // the WebException will be available as Exception.InnerException
                    throw new OperationCanceledException(ex.Message, ex, ct);
                }

                // cancellation hasn't been requested, rethrow the original WebException
                throw;
            }
        }
    }
}

但是,如果执行的时间超过预设时间,我不知道如何终止request

我了解CancellationTokenSource()CancelAfter(Int32),但不了解如何修改上面的示例以使用CancellationTokenSource,因为它没有Register方法。 / p>

如何设置async HttpWebRequest并在预设时间后取消呢?

2 个答案:

答案 0 :(得分:2)

创建令牌源时,设置取消。然后传递令牌。应该超时了。

CancellationTokenSource cts = new CancellationTokenSource();
                cts.CancelAfter(1000);

                var ct = cts.Token;

                var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://www.zzz.com/here");
                var test = Extensions.GetResponseAsync(httpWebRequest, ct);

答案 1 :(得分:1)

希望对您有帮助

 _cancelTasks = new CancellationTokenSource();
        string Response = null;
        var task = new Task(() => {

            try
            {
                using (var wb = new WebClient())
                {
                    var data = new NameValueCollection();
                    data["XMLString"] = XMLRequest;
                    var response = wb.UploadValues(ServiceURL, "POST", data);

                }
            }
            catch (Exception ex)
            {
            }
        }, _cancelTasks.Token);
        task.Start();
        if (!task.Wait(GWRequestTimeout * 1000))
        {

            _cancelTasks.Cancel();
        }