Copied remotely
[mono.git] / mcs / class / System.Web / System.Web.Security / SqlMembershipProvider.cs
1 //
2 // System.Web.Security.SqlMembershipProvider
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //      Lluis Sanchez Gual (lluis@novell.com)
7 //
8 // (C) 2003 Ben Maurer
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 #if NET_2_0
33 using System.Collections;
34 using System.Collections.Specialized;
35 using System.Text;
36
37 namespace System.Web.Security {
38         public class SqlMembershipProvider : MembershipProvider {
39                 
40                 [MonoTODO]
41                 public override bool ChangePassword (string username, string oldPwd, string newPwd)
42                 {
43                         throw new NotImplementedException ();
44                 }
45                 
46                 [MonoTODO]
47                 public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPwdQuestion, string newPwdAnswer)
48                 {
49                         throw new NotImplementedException ();
50                 }
51                 
52                 [MonoTODO]
53                 public override MembershipUser CreateUser (string username, string password, string email, string pwdQuestion, string pwdAnswer, bool isApproved, out MembershipCreateStatus status)
54                 {
55                         throw new NotImplementedException ();
56                 }
57                 
58                 [MonoTODO]
59                 public override bool DeleteUser (string username, bool deleteAllRelatedData)
60                 {
61                         throw new NotImplementedException ();
62                 }
63                 
64                 [MonoTODO]
65                 public virtual string GeneratePassword ()
66                 {
67                         throw new NotImplementedException ();
68                 }
69                 
70                 [MonoTODO]
71                 public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
72                 {
73                         throw new NotImplementedException ();
74                 }
75                 
76                 [MonoTODO]
77                 public override MembershipUserCollection FindUsersByName (string nameToMatch, int pageIndex, int pageSize, out int totalRecords)
78                 {
79                         throw new NotImplementedException ();
80                 }
81                 
82                 [MonoTODO]
83                 public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
84                 {
85                         throw new NotImplementedException ();
86                 }
87                 
88                 [MonoTODO]
89                 public override int GetNumberOfUsersOnline ()
90                 {
91                         throw new NotImplementedException ();
92                 }
93                 
94                 [MonoTODO]
95                 public override string GetPassword (string username, string answer)
96                 {
97                         throw new NotImplementedException ();
98                 }
99                 
100                 [MonoTODO]
101                 public override MembershipUser GetUser (string username, bool userIsOnline)
102                 {
103                         throw new NotImplementedException ();
104                 }
105                 
106                 [MonoTODO]
107                 public override string GetUserNameByEmail (string email)
108                 {
109                         throw new NotImplementedException ();
110                 }
111                 
112                 [MonoTODO]
113                 public override void Initialize (string name, NameValueCollection config)
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 
118                 [MonoTODO]
119                 public override string ResetPassword (string username, string answer)
120                 {
121                         throw new NotImplementedException ();
122                 }
123                 
124                 [MonoTODO]
125                 public override void UpdateUser (MembershipUser user)
126                 {
127                         throw new NotImplementedException ();
128                 }
129                 
130                 [MonoTODO]
131                 public override bool ValidateUser (string username, string password)
132                 {
133                         throw new NotImplementedException ();
134                 }
135                 
136                 [MonoTODO]
137                 public override string ApplicationName {
138                         get { throw new NotImplementedException (); }
139                         set { throw new NotImplementedException (); }
140                 }
141                 
142                 [MonoTODO]
143                 public virtual string Description {
144                         get { throw new NotImplementedException (); }
145                 }
146                 
147                 [MonoTODO]
148                 public override bool EnablePasswordReset {
149                         get { throw new NotImplementedException (); }
150                 }
151                 
152                 [MonoTODO]
153                 public override bool EnablePasswordRetrieval {
154                         get { throw new NotImplementedException (); }
155                 }
156                 
157                 [MonoTODO]
158                 public virtual MembershipPasswordFormat PasswordFormat {
159                         get { throw new NotImplementedException (); }
160                 }
161                 
162                 [MonoTODO]
163                 public override bool RequiresQuestionAndAnswer {
164                         get { throw new NotImplementedException (); }
165                 }
166                 
167                 [MonoTODO]
168                 public virtual bool RequiresUniqueEmail {
169                         get { throw new NotImplementedException (); }
170                 }
171         }
172 }
173 #endif
174