How to parse HttpWebResponse.Headers.Keys for a Set-Cookie session id returned

后端 未结 4 564
名媛妹妹
名媛妹妹 2020-12-13 07:46

I\'m trying to create an HttpWebRequest/HttpWebResponse session with an ASP.NET website to later parse an HTML form through url params (this part I know how to do), but I do

4条回答
  •  不思量自难忘°
    2020-12-13 08:19

    The .NET framework will manage cookies for you. You don't have to concern yourself with parsing the cookie information out of the headers or adding a cookie header to your requests.

    To store and send your session ID, use the Cookie and CookieContainer classes to store them and then make sure you send your cookies with every request.

    The following example shows how to do this. The CookieContainer, 'cookieJar' can be shared across multiple domains and requests. Once you add it to a request object, the reference to it will also be added to the response object when the response is returned.

    CookieContainer cookieJar = new CookieContainer();
    
    var request = (HttpWebRequest)HttpWebRequest.Create("http://www.google.com");
    request.CookieContainer = cookieJar;
    
    var response = request.GetResponse();
    
    foreach (Cookie c in cookieJar.GetCookies(request.RequestUri))
    {
        Console.WriteLine("Cookie['" + c.Name + "']: " + c.Value);
    }
    

    The output of this code will be:

    Cookie['PREF']: ID=59e9a22a8cac2435:TM=1246226400:LM=1246226400:S=tvWTnbBhK4N7Tlpu

提交回复
热议问题