Merge pull request #4033 from ntherning/no-stdcall-for-icalls-on-windows-32-bit
[mono.git] / mcs / class / System.Web.Extensions / System.Web.ClientServices.Providers / ClientFormsAuthenticationMembershipProvider.cs
1 //
2 // System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider
3 //
4 // Authors:
5 //   Marek Habersack (mhabersack@novell.com)
6 //
7 // (C) 2008 Novell, Inc
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.ComponentModel;
33 using System.Collections.Specialized;
34 using System.Net;
35 using System.Security;
36 using System.Security.Principal;
37 using System.Web;
38 using System.Web.Security;
39 using System.Web.UI;
40
41 namespace System.Web.ClientServices.Providers
42 {
43         public class ClientFormsAuthenticationMembershipProvider : System.Web.Security.MembershipProvider
44         {
45 #pragma warning disable 67
46                 public event EventHandler <UserValidatedEventArgs> UserValidated;
47 #pragma warning restore 67
48                 
49                 public override string ApplicationName {
50                         get { throw new NotImplementedException (); }
51                         set { throw new NotImplementedException (); }
52                 }
53
54                 public override bool EnablePasswordReset {
55                         get { throw new NotImplementedException (); }
56                 }
57                 
58                 public override bool EnablePasswordRetrieval {
59                         get { throw new NotImplementedException (); }
60                 }
61                 
62                 public override int MaxInvalidPasswordAttempts {
63                         get { throw new NotImplementedException (); }
64                 }
65                 
66                 public override int MinRequiredNonAlphanumericCharacters {
67                         get { throw new NotImplementedException (); }
68                 }
69                 
70                 public override int MinRequiredPasswordLength {
71                         get { throw new NotImplementedException (); }
72                 }               
73
74                 public override int PasswordAttemptWindow {
75                         get { throw new NotImplementedException (); }
76                 }
77                 
78                 public override MembershipPasswordFormat PasswordFormat {
79                         get { throw new NotImplementedException (); }
80                 }
81                 
82                 public override string PasswordStrengthRegularExpression {
83                         get { throw new NotImplementedException (); }
84                 }
85                 
86                 public override bool RequiresQuestionAndAnswer {
87                         get { throw new NotImplementedException (); }
88                 }
89                 
90                 public override bool RequiresUniqueEmail {
91                         get { throw new NotImplementedException (); }
92                 }
93                 
94                 public ClientFormsAuthenticationMembershipProvider ()
95                 {
96                         throw new NotImplementedException ();
97                 }
98                 
99                 public static bool ValidateUser (string username, string password, string serviceUri)
100                 {
101                         throw new NotImplementedException ();
102                 }
103                 
104                 public override bool ChangePassword (string username, string oldPassword, string newPassword)
105                 {
106                         throw new NotImplementedException ();
107                 }
108                 
109                 public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPasswordQuestion, string newPasswordAnswer)
110                 {
111                         throw new NotImplementedException ();
112                 }
113                 
114                 public override MembershipUser CreateUser (string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved,
115                                                            object providerUserKey, out MembershipCreateStatus status)
116                 {
117                         throw new NotImplementedException ();
118                 }
119                 
120                 public override bool DeleteUser (string username, bool deleteAllRelatedData)
121                 {
122                         throw new NotImplementedException ();
123                 }
124                 
125                 public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
126                 {
127                         throw new NotImplementedException ();
128                 }
129                 
130                 public override MembershipUserCollection FindUsersByName (string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
131                 {
132                         throw new NotImplementedException ();
133                 }
134                 
135                 public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
136                 {
137                         throw new NotImplementedException ();
138                 }
139                 
140                 public override int GetNumberOfUsersOnline ()
141                 {
142                         throw new NotImplementedException ();
143                 }
144                 
145                 public override string GetPassword (string username, string answer)
146                 {
147                         throw new NotImplementedException ();
148                 }               
149                 
150                 public override MembershipUser GetUser (object providerUserKey, bool userIsOnline)
151                 {
152                         throw new NotImplementedException ();
153                 }
154                 
155                 public override MembershipUser GetUser (string username, bool userIsOnline)
156                 {
157                         throw new NotImplementedException ();
158                 }
159                 
160                 public override string GetUserNameByEmail (string email)
161                 {
162                         throw new NotImplementedException ();
163                 }
164                 
165                 public override void Initialize (string name, NameValueCollection config)
166                 {
167                         throw new NotImplementedException ();
168                 }
169                 
170                 public void Logout ()
171                 {
172                         throw new NotImplementedException ();
173                 }
174                 
175                 public override string ResetPassword (string username, string answer)
176                 {
177                         throw new NotImplementedException ();
178                 }
179                 
180                 public override bool UnlockUser (string username)
181                 {
182                         throw new NotImplementedException ();
183                 }
184                 
185                 public override void UpdateUser (System.Web.Security.MembershipUser user)
186                 {
187                         throw new NotImplementedException ();
188                 }
189                 
190                 public override bool ValidateUser (string username, string password)
191                 {
192                         throw new NotImplementedException ();
193                 }
194                 
195                 public bool ValidateUser (string username, string password, bool rememberMe)
196                 {
197                         throw new NotImplementedException ();
198                 }
199         }
200 }