Removed debug noise
[mono.git] / mcs / class / System.Web / System.Web.Security / MembershipCreateStatus.cs
index e2fecc94eddc9ce59e0c3ad61960659ad8f2d31e..6f0fcdf17d9245639586bb15d38616ad11232228 100644 (file)
@@ -5,8 +5,7 @@
 //     Ben Maurer (bmaurer@users.sourceforge.net)
 //
 // (C) 2003 Ben Maurer
-//
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+using System.Runtime.CompilerServices;
 
-#if NET_2_0
-namespace System.Web.Security {
-       public enum MembershipCreateStatus {
-               Success = 0,
-               UserNotFound = 1,
-               InvalidPassword = 2,
-               InvalidQuestion = 3,
-               InvalidAnswer = 4,
-               InvalidEmail = 5,
-               DuplicateUsername = 6,
-               DuplicateEmail = 7,
-               UserRejected = 8,
-               ProviderError = 9
+namespace System.Web.Security
+{
+#if NET_4_0
+       [TypeForwardedFrom ("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+#endif
+       public enum MembershipCreateStatus
+       {
+               Success,
+               InvalidUserName,
+               InvalidPassword,
+               InvalidQuestion,
+               InvalidAnswer,
+               InvalidEmail,
+               DuplicateUserName,
+               DuplicateEmail,
+               UserRejected,
+               InvalidProviderUserKey,
+               DuplicateProviderUserKey,
+               ProviderError
        }
 }
-#endif
+