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