HttpListener::Prefixes Property
.NET Framework (current version)
Gets the Uniform Resource Identifier (URI) prefixes handled by this HttpListener object.
Assembly: System (in System.dll)
public: property HttpListenerPrefixCollection^ Prefixes { HttpListenerPrefixCollection^ get(); }
Property Value
Type: System.Net::HttpListenerPrefixCollection^An 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."); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: