HttpListener.Prefixes Propriedade

Definição

Obtém os prefixos de URI (Uniform Resource Identifier) manipulados por este objeto HttpListener.

public:
 property System::Net::HttpListenerPrefixCollection ^ Prefixes { System::Net::HttpListenerPrefixCollection ^ get(); };
public System.Net.HttpListenerPrefixCollection Prefixes { get; }
member this.Prefixes : System.Net.HttpListenerPrefixCollection
Public ReadOnly Property Prefixes As HttpListenerPrefixCollection

Valor da propriedade

Um HttpListenerPrefixCollection que contém os prefixos de URI que este objeto HttpListener está configurado para manipular.

Exceções

Este objeto foi fechado.

Exemplos

O exemplo de código a seguir demonstra como usar a Prefixes propriedade para obter e imprimir os prefixos de URI que são manipulados.

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.");
    }
}
Public Shared Sub DisplayPrefixesAndState(ByVal listener As HttpListener)
    ' List the prefixes to which the server listens.
    Dim prefixes As HttpListenerPrefixCollection = listener.Prefixes

    If prefixes.Count = 0 Then
        Console.WriteLine("There are no prefixes.")
    End If

    For Each prefix As String In prefixes
        Console.WriteLine(prefix)
    Next

    ' Show the listening state.
    If listener.IsListening Then
        Console.WriteLine("The server is listening.")
    End If
End Sub

Comentários

Os prefixos estão em forma canônica. Para obter uma descrição detalhada dos prefixos, consulte a visão geral da HttpListener classe.

Aplica-se a