我需要一个登录请求。我在 WPF 中使用 webview2 包并使用它。
我的代码是这样的:
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, new Uri("Sample_url"));
request.Content = new FormUrlEncodedContent(new[] {
new KeyValuePair<string, string>("email", email),
new KeyValuePair<string, string>("password", "123"),
});
// webview2 does not contain a defenition for 'NavigateWithHttpRequestMessage'
Browser.NavigateWithHttpRequestMessage();
我想要做的是先登录用户然后向他展示视图。