SelectedDatesCollection.GetEnumerator Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
IEnumeratorZwraca obiekt implementowany , który zawiera wszystkie DateTime obiekty w kolekcjiSelectedDatesCollection.
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
Zwraca
Obiekt IEnumeratorimplementowany, który zawiera wszystkie DateTime obiekty w obiekcie SelectedDatesCollection.
Implementuje
Przykłady
W poniższym przykładzie kodu pokazano, jak za pomocą GetEnumerator metody utworzyć System.Collections.IEnumeratorobiekt implementowany, który jest iterowany, aby wyświetlić wybrane daty z kontrolki Calendar .
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
<script runat="server">
void Select_Change(Object sender, EventArgs e)
{
DateTime current_date;
// Create IEnumerator.
IEnumerator myEnum = Calendar1.SelectedDates.GetEnumerator();
Label1.Text = "The dates selected are: ";
// Loop through the IEnumerator and display the contents.
while (myEnum.MoveNext())
{
current_date = (DateTime)myEnum.Current;
Label1.Text += " " + current_date.Day.ToString();
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"
OnSelectionChanged="Select_Change"/>
<hr />
Select dates from the Calendar.<br /><br />
<asp:Label id="Label1" runat="server" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
<script runat="server">
Sub Select_Change(sender As Object, e As EventArgs)
Dim current_date As DateTime
' Create IEnumerator.
Dim myEnum As IEnumerator = Calendar1.SelectedDates.GetEnumerator()
Label1.Text = "The dates selected are: "
' Loop through the IEnumerator and display the contents.
While myEnum.MoveNext()
current_date = CType(myEnum.Current, DateTime)
Label1.Text &= " " & current_date.Day.ToString()
End While
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"
OnSelectionChanged="Select_Change"/>
<hr />
Select dates from the Calendar.<br /><br />
<asp:Label id="Label1" runat="server" />
</form>
</body>
</html>
Uwagi
Użyj tej metody, aby utworzyć System.Collections.IEnumerator-implementowany obiekt, który można łatwo iterować, aby uzyskać każdy element w kolekcji SelectedDatesCollection .
Użyj właściwości , IEnumerator.Current aby uzyskać element aktualnie wskazywany w kolekcji.
IEnumerator.MoveNext Użyj metody , aby przejść do następnego elementu w kolekcji.
IEnumerator.Reset Użyj metody , aby przenieść moduł wyliczający z powrotem do pozycji początkowej.
Uwaga
Metoda IEnumerator.MoveNext musi być wywoływana po utworzeniu obiektu zaimplementowanego System.Collections.IEnumeratorlub przy użyciu IEnumerator.Reset metody , aby przenieść moduł wyliczający do pierwszego elementu w kolekcji. W przeciwnym razie element reprezentowany przez IEnumerator.Current właściwość jest niezdefiniowany.