Hi,
We have confirmed this to be an issue. The root issue is the return type of CookieManager.GetCookies is of CookieCollection, which is based on NameObjectCollectionBase and can not hold multiple values of the same name.
We will change CookieManager.GetCookies to return Cookie[] so that it will be able to return multiple cookies with the same name for different domain names. We will also add an implicit conversion operator that can "silently" convert Cookie[] to CookieCollection so existing code like below will continue to compile and behave exactly as before:
Code: C#
CookieCollection cookies = webView.Engine.CookieManager.GetCookies("", false);
In order to get multiple cookies with the same name, you must change the above code to the following once you have the new build:
Code: C#
Cookie[] cookies = webView.Engine.CookieManager.GetCookies("", false);
We will reply here again once the new build is available.
Thanks!