xamarin / xamarin-macios

.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
Other
2.45k stars 511 forks source link

Figure out replacement for ServicePointManager #20764

Open rolfbjarne opened 3 months ago

rolfbjarne commented 3 months ago

We use ServicePointManager here:

https://github.com/xamarin/xamarin-macios/blob/e15955bb6739dacfbb51743934438439324b30c9/src/Foundation/NSUrlSessionHandler.cs#L161-L171

but ServicePointManager is obsolete in .NET 9 (https://github.com/dotnet/runtime/issues/71836), so we need to come up with a replacement.

rolfbjarne commented 3 months ago

Maybe we should look at SslProtocols instead?

https://github.com/xamarin/xamarin-macios/blob/e15955bb6739dacfbb51743934438439324b30c9/src/Foundation/NSUrlSessionHandler.cs#L657-L668