1 instantiation of HttpEndPointListener
System.Net.HttpListener (1)
System\Net\Managed\HttpEndPointManager.cs (1)
157epl = new HttpEndPointListener(listener, addr, port, secure);
17 references to HttpEndPointListener
System.Net.HttpListener (17)
System\Net\Managed\HttpConnection.cs (3)
50private readonly HttpEndPointListener _epl; 73public HttpConnection(Socket sock, HttpEndPointListener epl, bool secure, X509Certificate cert) 471HttpEndPointListener.UnbindContext(_context);
System\Net\Managed\HttpEndPointListener.cs (2)
141HttpEndPointListener epl = (HttpEndPointListener)e.UserToken!;
System\Net\Managed\HttpEndPointManager.cs (12)
40private static readonly Dictionary<IPAddress, Dictionary<int, HttpEndPointListener>> s_ipEndPoints = new Dictionary<IPAddress, Dictionary<int, HttpEndPointListener>>(); 106HttpEndPointListener epl = GetEPListener(lp.Host!, lp.Port, listener, lp.Secure); 110private static HttpEndPointListener GetEPListener(string host, int port, HttpListener listener, bool secure) 137Dictionary<int, HttpEndPointListener>? p; 138if (s_ipEndPoints.TryGetValue(addr, out Dictionary<int, HttpEndPointListener>? value)) 144p = new Dictionary<int, HttpEndPointListener>(); 148HttpEndPointListener? epl; 149if (p.TryGetValue(port, out HttpEndPointListener? epListener)) 169public static void RemoveEndPoint(HttpEndPointListener epl, IPEndPoint ep) 173Dictionary<int, HttpEndPointListener>? p = null; 212HttpEndPointListener epl = GetEPListener(lp.Host!, lp.Port, listener, lp.Secure);