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 Sub Clear

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

Dim users As MembershipUserCollection = Membership.GetAllUsers()

' Code to modify MembershipUserCollection here.

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

.NET Framework
Available since 2.0
Return to top
Show: