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