| 1234567891011121314151617181920212223242526 |
- //
- // System.Web.Security.MembershipCreateStatus
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- namespace System.Web.Security {
- public enum MembershipCreateStatus {
- Success,
- UserNotFound,
- InvalidPassword,
- InvalidQuestion,
- InvalidAnswer,
- InvalidEmail,
- DuplicateUsername,
- DuplicateEmail,
- UserRejected,
- ProviderError
- }
- }
- #endif
|