Ryan Davis

Results 83 comments of Ryan Davis

After `.ConfigureHttpClient(..)`: `.ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { ServerCertificateCustomValidationCallback = (message, cert, chain, sslErrors) => true })`

I've used it on MAUI, it works.

I _think_ that the combination of this and https://github.com/dotnet/runtime/issues/82495 would have us rosetta-free in the dotnet ios world.

Yes, I do have plans to switch it over in the near future. That said, I had expected it would be possible to use sockets directly from netstandard2, though I...

Is it possible in new dotnet to do the equivalent of the Xamarin.iOS `--interpreter=-all` (aot everything, but allow the interpreter to handle codegen)?

To my understanding, in most (all?) situations, none of the assemblies available at compile time should require the interpreter to execute. "Problematic" libraries emit new code into new dynamic assemblies...

Use these settings in Release: ``` true -all ``` This means, "enable the interpreter, but don't use it on any project assemblies". Your app's assemblies will be AOT compiled as...

Hi! Are you able to share the output of `http://172.17.13.140:8080/web/P2PServer.jsp?cache_mode=false&action=search&txtInput_json={"test" : ""}`? It may be that the returned json has something in it that breaks the driver. Otherwise, you might...

Thanks for the information -- I'll sort this out over the next day or two :+1:

Thanks! Yes, I did notice that part of the work does appear to block the UI when testing a few apis myself recently. I'm surprised that I let that sneak...