Don't clone internally used era values
[mono.git] / mcs / class / System.Web.Extensions / System.Web.ClientServices.Providers / ClientWindowsAuthenticationMembershipProvider.cs
1 //
2 // System.Web.ClientServices.Providers.ClientWindowsAuthenticationMembershipProvider
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 #if NET_3_5
32 using System;
33 using System.Collections.Specialized;
34 using System.ComponentModel;
35 using System.Net;
36 using System.Security;
37 using System.Security.Principal;
38 using System.Web;
39 using System.Web.Security;
40 using System.Web.UI;
41
42 namespace System.Web.ClientServices.Providers
43 {
44         public class ClientWindowsAuthenticationMembershipProvider : MembershipProvider
45         {
46                 public override string ApplicationName {
47                         get { throw new NotImplementedException (); }
48                         set { throw new NotImplementedException (); }
49                 }
50                 
51                 public override bool EnablePasswordReset {
52                         get { throw new NotImplementedException (); }
53                 }
54                 
55                 public override bool EnablePasswordRetrieval {
56                         get { throw new NotImplementedException (); }
57                 }
58                 
59                 public override int MaxInvalidPasswordAttempts {
60                         get { throw new NotImplementedException (); }
61                 }
62                 
63                 public override int MinRequiredNonAlphanumericCharacters {
64                         get { throw new NotImplementedException (); }
65                 }
66                 
67                 public override int MinRequiredPasswordLength {
68                         get { throw new NotImplementedException (); }
69                 }
70                 
71                 public override int PasswordAttemptWindow {
72                         get { throw new NotImplementedException (); }
73                 }
74                 
75                 public override System.Web.Security.MembershipPasswordFormat PasswordFormat {
76                         get { throw new NotImplementedException (); }
77                 }
78                 
79                 public override string PasswordStrengthRegularExpression {
80                         get { throw new NotImplementedException (); }
81                 }
82                 
83                 public override bool RequiresQuestionAndAnswer {
84                         get { throw new NotImplementedException (); }
85                 }
86                 
87                 public override bool RequiresUniqueEmail {
88                         get { throw new NotImplementedException (); }
89                 }
90                                 
91                 public ClientWindowsAuthenticationMembershipProvider ()
92                 {
93                         throw new NotImplementedException ();
94                 }
95                 
96                 public override bool ChangePassword (string username, string oldPassword, string newPassword)
97                 {
98                         throw new NotImplementedException ();
99                 }
100                 
101                 public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPasswordQuestion, string newPasswordAnswer)
102                 {
103                         throw new NotImplementedException ();
104                 }
105                 
106                 public override MembershipUser CreateUser (string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved,
107                                                            object providerUserKey, out MembershipCreateStatus status)
108                 {
109                         throw new NotImplementedException ();
110                 }
111                 
112                 public override bool DeleteUser (string username, bool deleteAllRelatedData)
113                 {
114                         throw new NotImplementedException ();
115                 }
116                 
117                 public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
118                 {
119                         throw new NotImplementedException ();
120                 }
121                 
122                 public override MembershipUserCollection FindUsersByName (string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
123                 {
124                         throw new NotImplementedException ();
125                 }
126                 
127                 public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
128                 {
129                         throw new NotImplementedException ();
130                 }
131                 
132                 public override int GetNumberOfUsersOnline ()
133                 {
134                         throw new NotImplementedException ();
135                 }
136                 
137                 public override string GetPassword (string username, string answer)
138                 {
139                         throw new NotImplementedException ();
140                 }
141                 
142                 public override MembershipUser GetUser (object providerUserKey, bool userIsOnline)
143                 {
144                         throw new NotImplementedException ();
145                 }
146                 
147                 public override MembershipUser GetUser (string username, bool userIsOnline)
148                 {
149                         throw new NotImplementedException ();
150                 }
151                 
152                 public override string GetUserNameByEmail (string email)
153                 {
154                         throw new NotImplementedException ();
155                 }
156                 
157                 public void Logout ()
158                 {
159                         throw new NotImplementedException ();
160                 }
161                 
162                 public override string ResetPassword (string username, string answer)
163                 {
164                         throw new NotImplementedException ();
165                 }
166                 
167                 public override bool UnlockUser (string username)
168                 {
169                         throw new NotImplementedException ();
170                 }
171                 
172                 public override void UpdateUser (MembershipUser user)
173                 {
174                         throw new NotImplementedException ();
175                 }
176                 
177                 public override bool ValidateUser (string username, string password)
178                 {
179                         throw new NotImplementedException ();
180                 }
181         }
182 }
183 #endif