Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpListener::Prefixes Property

 

Gets the Uniform Resource Identifier (URI) prefixes handled by this HttpListener object.

Namespace:   System.Net
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
Return to top
Show:
© 2017 Microsoft