回答:
お試しくださいWebClient.DownloadFileAsync()
。CancelAsync()
独自のタイムアウトを使用してタイマーで呼び出すことができます。
var taskDownload = client.DownloadFileTaskAsync(new Uri("http://localhost/folder"),"filename")
、その後とtaskDownload.Wait(TimeSpan.FromSeconds(5));
基本WebRequest
クラスのタイムアウトプロパティを設定する派生クラスを作成できます。
using System;
using System.Net;
public class WebDownload : WebClient
{
/// <summary>
/// Time in milliseconds
/// </summary>
public int Timeout { get; set; }
public WebDownload() : this(60000) { }
public WebDownload(int timeout)
{
this.Timeout = timeout;
}
protected override WebRequest GetWebRequest(Uri address)
{
var request = base.GetWebRequest(address);
if (request != null)
{
request.Timeout = this.Timeout;
}
return request;
}
}
ベースのWebClientクラスと同じように使用できます。
request.Timeout
。エラーmsg 'System.Net.WebRequest' does not contain a definition for 'Timeout' and no extension method 'Timeout' accepting a first argument of type 'System.Net.WebRequest' could be found (are you missing a using directive or an assembly reference?)
、何が欠けていますか?
using
このコードスニペットで使用されるディレクティブを追加しました。
これを同期的に行うことを想定して、WebClient.OpenRead(...)メソッドを使用し、それが返すストリームにタイムアウトを設定すると、望ましい結果が得られます。
using (var webClient = new WebClient())
using (var stream = webClient.OpenRead(streamingUri))
{
if (stream != null)
{
stream.ReadTimeout = Timeout.Infinite;
using (var reader = new StreamReader(stream, Encoding.UTF8, false))
{
string line;
while ((line = reader.ReadLine()) != null)
{
if (line != String.Empty)
{
Console.WriteLine("Count {0}", count++);
}
Console.WriteLine(line);
}
}
}
}
WebClientから派生し、GetWebRequest(...)をオーバーライドしてタイムアウトを設定すると、@ Beniaminが提案したように機能しませんでしたが、これは機能しました。
stream.ReadTimeout
実際に要求の実行にかかったよりも大きい値を指定した場合でも、「要求が中止されました-操作がタイムアウトしました」というWebExceptionが引き続き表示されます