Accept self-signed certificates in Xamarin Android
问题 I got a Xamarin Forms project and inside the MainPage.xaml.cs file i want to perform a request to my server. The server is written in ASP.NET Core 2 and is running with a self-signed certificate. To buy a certificate isn't a solution for my problem, because customers don't want it and application only running in LAN. In my MainPage.xaml.cs file the Http-request looks like this: HttpClient m_Client = new HttpClient(); var uri = new Uri(myURL); var response = await m_Client.GetAsync(uri); if