これは私が使用しているコードです:
private bool CheckPartialDL(String url)
{
HttpWebRequest hwr = (HttpWebRequest)WebRequest.Create(url);
hwr.Method = "HEAD";
hwr.AddRange(0);
try
{
HttpWebResponse hwbresp = (HttpWebResponse)hwr.GetResponse();
if (hwbresp.StatusCode == HttpStatusCode.PartialContent)
{
hwbresp.Close();
return true;
}
}//end of try
catch (WebException wbe)
{
MessageBox.Show(wbe.Message, "Error");
}//end of catch
return false;
}//end of Check
しかし、サーバーは次のエラーを返しました。
リモートサーバーがエラーを返しました:(416)要求された範囲が満たされていません。
次のファイルフォームをダウンロードします。
http://windowsclient.net/sitefiles/1000/wpf/videos/source-code/creatingavideoapp-part1.zip
IDMを使用して再開機能を確認したところ、idmはそれが利用可能であることを示しました。
では、提示されたコードのどこが間違っているのでしょうか。