HttpListenerPrefixCollection.GetEnumerator Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna um objeto que pode ser usado para iterar pela coleção.
public:
virtual System::Collections::Generic::IEnumerator<System::String ^> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<string> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<string>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<string>
Public Function GetEnumerator () As IEnumerator(Of String)
Retornos
Um objeto que implementa a interface IEnumerator e fornece acesso às cadeias de caracteres nessa coleção.
Implementações
Exemplos
O exemplo de código a seguir demonstra a enumeração por meio de uma coleção. Observe que os exemplos do Visual Basic e do C# usam instruções específicas de linguagem para enumerar por meio da coleção em vez de recuperar o enumerador.
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
O objeto retornado por esse método é inicialmente posicionado antes do primeiro elemento nesta coleção. Você deve chamar o MoveNext método antes de poder acessar o primeiro elemento. Para acessar o elemento na posição atual, chame a Current propriedade .
Não modifique a coleção ao usar o enumerador . Se a coleção for modificada enquanto um enumerador estiver em uso, uma tentativa de definir a posição chamando MoveNext ou Reset causará um InvalidOperationException.
Para obter uma descrição detalhada dos enumeradores, consulte a documentação da IEnumerator classe e do GetEnumerator método .