3 references to FindServicePoint
System.Net.Requests (3)
System\Net\HttpWebRequest.cs (1)
789public ServicePoint ServicePoint => _servicePoint ??= ServicePointManager.FindServicePoint(Address, Proxy);
System\Net\ServicePoint\ServicePointManager.cs (2)
103public static ServicePoint FindServicePoint(Uri address) => FindServicePoint(address, null); 105public static ServicePoint FindServicePoint(string uriString, IWebProxy? proxy) => FindServicePoint(new Uri(uriString), proxy);