我正在尝试在一个UWP项目中使用类,该项目是Xamarin Forms应用程序的一部分。我需要对我添加的System.Data.DLL的引用。但是,当我尝试像这样创建SqlConnection时:
using (SqlConnection connection = new SqlConnection(queryString))
{
};
我得到错误Reference to type 'Component' claims it is defined in 'System', but it could not be found.
我可以像这样声明一个SqlConn
我试图在一个http页面上嵌入一个http网站的iFrame,但是我得到了一个错误:
The page at 'https:-url-' was loaded over HTTPS, but ran insecure content from 'http://-url-': this content should also be loaded over HTTPS.
有什么办法可以绕过这个问题吗?