React to StringSegment change
This commit is contained in:
parent
6c13465dc2
commit
c9a8cfce04
|
|
@ -45,7 +45,7 @@ namespace E2ETests
|
|||
_httpClient = new HttpClient(_httpClientHandler) { BaseAddress = new Uri(_deploymentResult.ApplicationBaseUri) };
|
||||
foreach (var header in Microsoft.Net.Http.Headers.SetCookieHeaderValue.ParseList(response.Headers.GetValues("Set-Cookie").ToList()))
|
||||
{
|
||||
_httpClientHandler.CookieContainer.Add(new Uri(_deploymentResult.ApplicationBaseUri), new Cookie(header.Name, header.Value));
|
||||
_httpClientHandler.CookieContainer.Add(new Uri(_deploymentResult.ApplicationBaseUri), new Cookie(header.Name.ToString(), header.Value.ToString()));
|
||||
}
|
||||
|
||||
//Post a message to the OpenIdConnect middleware
|
||||
|
|
|
|||
Loading…
Reference in New Issue