Switch to compiler-tester
[mono.git] / mcs / class / System.Web / System.Web.Security / ActiveDirectoryMembershipProvider.cs
index 3e91ccd9fbf5737b599f8826a9bb1b6f206e0121..ce3695097446dde05ff96bdecd64e7ad0f3a1a19 100644 (file)
@@ -50,7 +50,7 @@ namespace System.Web.Security {
                }
                
                [MonoTODO]
-               public override MembershipUser CreateUser (string username, string password, string email, string pwdQuestion, string pwdAnswer, bool isApproved, out MembershipCreateStatus status)
+               public override MembershipUser CreateUser (string username, string password, string email, string pwdQuestion, string pwdAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
                {
                        throw new NotImplementedException ();
                }
@@ -103,6 +103,12 @@ namespace System.Web.Security {
                        throw new NotImplementedException ();
                }
                
+               [MonoTODO]
+               public override MembershipUser GetUser (object providerUserKey, bool userIsOnline)
+               {
+                       throw new NotImplementedException ();
+               }
+               
                [MonoTODO]
                public override string GetUserNameByEmail (string email)
                {
@@ -133,6 +139,12 @@ namespace System.Web.Security {
                        throw new NotImplementedException ();
                }
                
+               [MonoTODO]
+               public override bool UnlockUser (string userName)
+               {
+                       throw new NotImplementedException ();
+               }
+               
                [MonoTODO]
                public override string ApplicationName {
                        get { throw new NotImplementedException (); }
@@ -155,7 +167,7 @@ namespace System.Web.Security {
                }
                
                [MonoTODO]
-               public virtual MembershipPasswordFormat PasswordFormat {
+               public override MembershipPasswordFormat PasswordFormat {
                        get { throw new NotImplementedException (); }
                }
                
@@ -165,7 +177,32 @@ namespace System.Web.Security {
                }
                
                [MonoTODO]
-               public virtual bool RequiresUniqueEmail {
+               public override bool RequiresUniqueEmail {
+                       get { throw new NotImplementedException (); }
+               }
+               
+               [MonoTODO]
+               public override int MaxInvalidPasswordAttempts {
+                       get { throw new NotImplementedException (); }
+               }
+               
+               [MonoTODO]
+               public override int MinRequiredNonAlphanumericCharacters {
+                       get { throw new NotImplementedException (); }
+               }
+               
+               [MonoTODO]
+               public override int MinRequiredPasswordLength {
+                       get { throw new NotImplementedException (); }
+               }
+               
+               [MonoTODO]
+               public override int PasswordAttemptWindow {
+                       get { throw new NotImplementedException (); }
+               }
+               
+               [MonoTODO]
+               public override string PasswordStrengthRegularExpression {
                        get { throw new NotImplementedException (); }
                }
        }