MembershipSortOptions.cs 334 B

12345678910111213141516171819202122
  1. //
  2. // System.Web.Security.MembershipSortOptions
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. namespace System.Web.Security {
  11. public enum MembershipSortOptions {
  12. UserName,
  13. CreationDate,
  14. LastActivityDate,
  15. LastLoginDate,
  16. LastPasswordChangeDate,
  17. Email
  18. }
  19. }
  20. #endif