HttpListenerPrefixCollection::Count Property
.NET Framework (current version)
Gets the number of prefixes contained in the collection.
Assembly: System (in System.dll)
Implements
ICollection<T>::CountThe following code example displays the prefixes in a collection.
public static void DisplayPrefixesAndState(HttpListener listener) { // List the prefixes to which the server listens. HttpListenerPrefixCollection prefixes = listener.Prefixes; if (prefixes.Count == 0) { Console.WriteLine("There are no prefixes."); } foreach(string prefix in prefixes) { Console.WriteLine(prefix); } // Show the listening state. if (listener.IsListening) { Console.WriteLine("The server is listening."); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: