There is such a task: There is a basic WPF application that runs several (different number) copies of another WPF application. Each such copy contains a WebBrowser component, on which authorization is performed on the website http://n.site/ Each such copy must have its own cookie area, since each copy is authorized by different accounts. As you know, the WebBrowser component uses the “one cookie space” for all launched components. I read that in order to divide this "space" you need to run copies in different domains.
Question: how to implement it? PS the main application and copies use the same external dll, if that matters. Thank you in advance. PSS I already implemented similar in WinForms, and there the space of cookies was different for cookies without changing the domain.