HttpListener.Prefixes Property
.NET Framework 4
Gets the Uniform Resource Identifier (URI) prefixes handled by this HttpListener object.
Assembly: System (in System.dll)
Property Value
Type: System.Net.HttpListenerPrefixCollectionAn HttpListenerPrefixCollection that contains the URI prefixes that this HttpListener object is configured to handle.
| Exception | Condition |
|---|---|
| ObjectDisposedException |
This object has been closed. |
The prefixes are in canonical form. For a detailed description of prefixes, see the HttpListener class overview.
The following code example demonstrates using the Prefixes property to obtain and print the URI prefixes that are handled.
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."); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.