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();
48
foreach (string uriPrefix in
_httpListener
.PrefixCollection)
56
_httpListener
.CheckDisposed();
64
foreach (string uriPrefix in
_httpListener
.PrefixCollection)
70
public int Count =>
_httpListener
.PrefixCollection.Count;
76
public void Add(string uriPrefix) =>
_httpListener
.AddPrefix(uriPrefix);
78
public bool Contains(string uriPrefix) =>
_httpListener
.ContainsPrefix(uriPrefix);
84
return new ListenerPrefixEnumerator(
_httpListener
.PrefixCollection.GetEnumerator());
87
public bool Remove(string uriPrefix) =>
_httpListener
.RemovePrefix(uriPrefix);
89
public void Clear() =>
_httpListener
.RemoveAll(true);