MembershipUserCollection.Clear Method ()

 

Removes all membership user objects from the collection.

Namespace:   System.Web.Security
Assembly:  System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)

public void Clear()

The following code example clears a MembershipUserCollection before replacing it with the results of the GetAllUsers method.

MembershipUserCollection users = Membership.GetAllUsers();

// Code to modify MembershipUserCollection here.

users.Clear();
users = Membership.GetAllUsers();

.NET Framework
Available since 2.0
Return to top
Show: