我得到了这个例外,但似乎无法找到我的问题:
A first chance exception of type 'System.Net.Http.HttpRequestException' occurred in System.Net.Http.dll
我正在使用用户名和密码登录到服务器,并且该过程正常运行。
继承我的代码:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
teamScreen = "https://thewebsite.com/teambeta/Login.aspx?" + "username=" +
logInUserIdString + "&password=" + logInPasswordString +
"&mobile=1&offsetHours=" + timezone;
webView1.Navigate(targetUri);
}
但我不想向商店提交应用程序,问题未解决。
有谁知道问题是什么,因为我似乎无法追查为什么我会得到例外?感谢。
答案 0 :(得分:0)
仍然没有解决,但我确实修复了以下内容,因为我没有正确设置Uri。
这是正确的代码:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
teamScreen = "https://thewebsite.com/teambeta/Login.aspx?" + "username=" +
logInUserIdString + "&password=" + logInPasswordString +
"&mobile=1&offsetHours=" + timezone;
Uri targetUri = new Uri(teamScreen);
webView1.Navigate(targetUri);
}
因为我从未设置过URI,因此不确定为什么它实际上有效。很奇怪,但仍然得到错误。