Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disappearing headers in WebClient after request

I have realy strange problem with Headers collection in WebClient class.

Here is my example:

WebClient client = new WebClient();
        client.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0");
        client.Headers.Add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
        client.Headers.Add("Accept-Language", "pl,en-us;q=0.7,en;q=0.3");

        Console.WriteLine("Before request:");
        foreach (string key in client.Headers)
        {
            Console.WriteLine(key + ": " + client.Headers[key]);
        }

        client.DownloadString("http://www.google.com");

        Console.WriteLine();
        Console.WriteLine("After request:");

        foreach (string key in client.Headers)
        {
            Console.WriteLine(key + ": " + client.Headers[key]);
        }

        Console.ReadLine();

My result of running this simple program:

Before request:
User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: pl,en-us;q=0.7,en;q=0.3

After request:
Accept-Language: pl,en-us;q=0.7,en;q=0.3

Why my headers are disappearing?

like image 322
Yozer Avatar asked Oct 23 '25 19:10

Yozer


1 Answers

because headers are sent and webclient did its job. if you want same headers for next request, you should add them again.

like image 162
TakeMeAsAGuest Avatar answered Oct 26 '25 07:10

TakeMeAsAGuest