I am trying to get the header \"Set-Cookie\" or access the cookie container, but the Set-Cookie header is not available. The cookie is in the response header, but it\'s not
You must edit the headers collection directly. Something like this:
request.Headers["Set-Cookie"] = "name=value"; request.BeginGetResponse(myCallback, request);