MembershipUserCollection.GetEnumerator Method

Definition

Gets an enumerator that can iterate through the membership user collection.

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

Returns

An IEnumerator for the entire MembershipUserCollection.

Implements

Examples

The following code example uses the IEnumerator returned from the GetEnumerator method to iterate through a MembershipUserCollection.

public void ListUsers(MembershipUserCollection users)
{
  foreach (MembershipUser u in users)
    Response.Write(u.UserName + "<br />");
}
Public Sub ListUsers(users As MembershipUserCollection)
  For Each u As MembershipUser in users
    Response.Write(u.UserName & "<br />")
  Next
End Sub

Remarks

Enumerators only allow reading the data in the collection. Enumerators cannot be used to modify the underlying collection. For more information, see IEnumerator.

Applies to

See also