MembershipUserCollection Class
Assembly: System.Web (in system.web.dll)
[SerializableAttribute] public ref class MembershipUserCollection sealed : ICollection, IEnumerable
/** @attribute SerializableAttribute() */ public final class MembershipUserCollection implements ICollection, IEnumerable
SerializableAttribute public final class MembershipUserCollection implements ICollection, IEnumerable
Not applicable.
A System.Web.Security.MembershipUserCollection is returned from the GetAllUsers, FindUsersByName, and FindUsersByEmail methods of the System.Web.Security.Membership class. The MembershipUserCollection objects returned by the GetAllUsers, FindUsersByName, and FindUsersByEmail methods contain a snapshot of user information in the membership data store. That is, changes to the membership user information in a MembershipUserCollection are not reflected in the membership data store. To modify membership user information in the membership data store, use the UpdateUser, CreateUser and DeleteUser methods of the System.Web.Security.Membership class.
Note: |
|---|
|
If you are not familiar with the membership features of ASP.NET, see Introduction to Membership before continuing. For a list of other topics related to membership, see Managing Users By Using Membership. |
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
Note: