GatewayIPAddressInformationCollection.IEnumerable.GetEnumerator Método

Definição

Retorna um objeto que pode ser usado para iterar por essa coleção.Returns an object that can be used to iterate through this collection.

 virtual System::Collections::IEnumerator ^ System.Collections.IEnumerable.GetEnumerator() = System::Collections::IEnumerable::GetEnumerator;
System.Collections.IEnumerator IEnumerable.GetEnumerator ();
abstract member System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
override this.System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
Function GetEnumerator () As IEnumerator Implements IEnumerable.GetEnumerator

Retornos

IEnumerator

Um objeto que implementa a interface IEnumerator e dá acesso ao tipos UnicastIPAddressInformation na coleção.An object that implements the IEnumerator interface and provides access to the UnicastIPAddressInformation types in this collection.

Implementações

Comentários

O objeto que é retornado por esse método é inicialmente posicionado antes do primeiro elemento nesta coleção.The object that is returned by this method is initially positioned before the first element in this collection. Você deve chamar o MoveNext método antes de poder acessar o primeiro elemento.You must call the MoveNext method before you can access the first element. Para acessar o elemento na posição atual, chame a Current propriedade.To access the element at the current position, call the Current property.

Não modifique a coleção ao usar o enumerador.Do not modify the collection while using the enumerator. Se a coleção for modificada enquanto um enumerador estiver em uso, uma tentativa de definir a posição chamando MoveNext ou Reset provocará um InvalidOperationException .If the collection is modified while an enumerator is in use, an attempt to set the position by calling MoveNext or Reset causes an InvalidOperationException.

Para obter uma descrição detalhada dos enumeradores, consulte a documentação da IEnumerator classe e o GetEnumerator método.For a detailed description of enumerators, see the documentation for the IEnumerator class and the GetEnumerator method.

Aplica-se a