Started getting this error after updating C# upgraded from NET 5 to 6-
Warning SYSLIB0014 'ServicePointManager.FindServicePoint(Uri)' is obsolete: 'WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead.'
var servicePoint = ServicePointManager.FindServicePoint(requestUri.GetEndpoint());
if (servicePoint.ConnectionLeaseTimeout == -1){}
On the Networking of the Breaking changes in .NET 6 there's WebRequest, WebClient, and ServicePoint are obsolete: