1 write to _httpListener
System.Net.HttpListener (1)
System\Net\HttpListenerPrefixCollection.cs (1)
35_httpListener = listener;
10 references to _httpListener
System.Net.HttpListener (10)
System\Net\HttpListenerPrefixCollection.cs (10)
40_httpListener.CheckDisposed(); 48foreach (string uriPrefix in _httpListener.PrefixCollection) 56_httpListener.CheckDisposed(); 64foreach (string uriPrefix in _httpListener.PrefixCollection) 70public int Count => _httpListener.PrefixCollection.Count; 76public void Add(string uriPrefix) => _httpListener.AddPrefix(uriPrefix); 78public bool Contains(string uriPrefix) => _httpListener.ContainsPrefix(uriPrefix); 84return new ListenerPrefixEnumerator(_httpListener.PrefixCollection.GetEnumerator()); 87public bool Remove(string uriPrefix) => _httpListener.RemovePrefix(uriPrefix); 89public void Clear() => _httpListener.RemoveAll(true);