在wpf应用程序中,我必须调用外部rest服务,该服务返回包含会话id的cookie。在所有后续调用中,我必须在cookie中发送会话id,否则它不会返回任何数据。那么,如何在类后面的wpf代码中检索cookie呢?CookieContainercookies = new CookieContainer();
HttpClientHandler handler = new HttpClientHandler();handler.<e
通过在.Net控制台应用程序中直接使用Httpclient,我可以通过以下代码管理cookies:CookieContainercookieContainer = handler.CookieContainer;
using (HttpClient client = new HttpClient(new Uri(url)).C