| 12345678910111213141516171819202122 |
- //
- // System.Web.Security.MembershipSortOptions
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- namespace System.Web.Security {
- public enum MembershipSortOptions {
- UserName,
- CreationDate,
- LastActivityDate,
- LastLoginDate,
- LastPasswordChangeDate,
- Email
- }
- }
- #endif
|