web-dev-qa-db-ja.com

C#でHTTPヘッダーのみをリクエストするにはどうすればよいですか?

大きなファイルのURLが存在するか確認したい。以下のコードを使用していますが、遅すぎます。

public static bool TryGet(string url)
{
    try
    {
        GetHttpResponseHeaders(url);
        return true;
    }
    catch (WebException)
    {
    }

    return false;
}

public static Dictionary<string, string> GetHttpResponseHeaders(string url)
{
    Dictionary<string, string> headers = new Dictionary<string, string>();
    WebRequest webRequest = HttpWebRequest.Create(url);
    using (WebResponse webResponse = webRequest.GetResponse())
    {
        foreach (string header in webResponse.Headers)
        {
            headers.Add(header, webResponse.Headers[header]);
        }
    }

    return headers;
}
30
Jader Dias

設定する必要があります:

webRequest.Method = "HEAD";

このようにして、サーバーはヘッダー情報のみ(コンテンツなし)で応答します。これは、サーバーが特定の操作(つまり、圧縮データなど)を受け入れるかどうかを確認する場合にも役立ちます。

49
Teoman Soygul