RepeaterItemCollection.GetEnumerator Метод

Определение

Возвращает интерфейс IEnumerator, который может выполнять итерацию всех объектов RepeaterItem в коллекции RepeaterItemCollection.

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

Возвращаемое значение

IEnumerator

Интерфейс IEnumerator, содержащий все объекты RepeaterItem в классе RepeaterItemCollection.

Реализации

Примеры

Чтобы увидеть этот код в контексте полного примера, см RepeaterItemCollection . раздел класса.

      void GetEnumerator_Clicked(Object Sender, EventArgs e)
      {
labelDisplay.Text = "Invoking GetEnumerator method.<br />";
labelDisplay.Text += "The Items collection contains: <br />";

// Display the elements of the RepeaterItemCollection using GetEnumerator.
RepeaterItemCollection  myItemCollection = myRepeater.Items;
IEnumerator myEnumertor = myItemCollection.GetEnumerator();
while(myEnumertor.MoveNext())
{
   RepeaterItem myItem = (RepeaterItem)myEnumertor.Current;
   labelDisplay.Text += ((DataBoundLiteralControl)
      myItem.Controls[0]).Text + "<br />";
}
      }
Sub GetEnumerator_Clicked(Sender As [Object], e As EventArgs)
   labelDisplay.Text = "Invoking GetEnumerator method.<br />"
   labelDisplay.Text += "The Items collection contains: <br />"
   
   ' Display the elements of the RepeaterItemCollection using GetEnumerator.
   Dim myItemCollection As RepeaterItemCollection = myRepeater.Items
   Dim myEnumertor As IEnumerator = myItemCollection.GetEnumerator()
   While myEnumertor.MoveNext()
      Dim myItem As RepeaterItem = CType(myEnumertor.Current, RepeaterItem)
      labelDisplay.Text += CType(myItem.Controls(0), DataBoundLiteralControl).Text + "<br />"
   End While
End Sub 'GetEnumerator_Clicked

Комментарии

Используйте этот метод, чтобы создать объект System.Collections.IEnumerator , который можно использовать для итерации по каждому элементу в элементе RepeaterItemCollection.

IEnumerator.Current Используйте свойство, чтобы получить элемент, на который в данный момент указывает коллекция.

IEnumerator.MoveNext Используйте метод для перехода к следующему элементу в коллекции.

IEnumerator.Reset Используйте метод для перемещения перечислителя обратно в начальную позицию.

Примечание

После создания System.Collections.IEnumerator объекта или использования IEnumerator.Reset метода для перемещения перечислителя в первый элемент коллекции необходимо вызвать IEnumerator.MoveNext метод. В противном случае элемент, представленный свойством IEnumerator.Current , не определен.

Применяется к

См. также раздел