2
0

ClientWindowsAuthenticationMembershipProvider.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. //
  2. // System.Web.ClientServices.Providers.ClientWindowsAuthenticationMembershipProvider
  3. //
  4. // Authors:
  5. // Marek Habersack ([email protected])
  6. //
  7. // (C) 2008 Novell, Inc
  8. //
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. #if NET_3_5
  30. using System;
  31. using System.Collections.Specialized;
  32. using System.ComponentModel;
  33. using System.Net;
  34. using System.Security;
  35. using System.Security.Principal;
  36. using System.Web;
  37. using System.Web.Security;
  38. using System.Web.UI;
  39. namespace System.Web.ClientServices.Providers
  40. {
  41. public class ClientWindowsAuthenticationMembershipProvider : MembershipProvider
  42. {
  43. public override string ApplicationName {
  44. get { throw new NotImplementedException (); }
  45. set { throw new NotImplementedException (); }
  46. }
  47. public override bool EnablePasswordReset {
  48. get { throw new NotImplementedException (); }
  49. }
  50. public override bool EnablePasswordRetrieval {
  51. get { throw new NotImplementedException (); }
  52. }
  53. public override int MaxInvalidPasswordAttempts {
  54. get { throw new NotImplementedException (); }
  55. }
  56. public override int MinRequiredNonAlphanumericCharacters {
  57. get { throw new NotImplementedException (); }
  58. }
  59. public override int MinRequiredPasswordLength {
  60. get { throw new NotImplementedException (); }
  61. }
  62. public override int PasswordAttemptWindow {
  63. get { throw new NotImplementedException (); }
  64. }
  65. public override System.Web.Security.MembershipPasswordFormat PasswordFormat {
  66. get { throw new NotImplementedException (); }
  67. }
  68. public override string PasswordStrengthRegularExpression {
  69. get { throw new NotImplementedException (); }
  70. }
  71. public override bool RequiresQuestionAndAnswer {
  72. get { throw new NotImplementedException (); }
  73. }
  74. public override bool RequiresUniqueEmail {
  75. get { throw new NotImplementedException (); }
  76. }
  77. public ClientWindowsAuthenticationMembershipProvider ()
  78. {
  79. throw new NotImplementedException ();
  80. }
  81. public override bool ChangePassword (string username, string oldPassword, string newPassword)
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPasswordQuestion, string newPasswordAnswer)
  86. {
  87. throw new NotImplementedException ();
  88. }
  89. public override MembershipUser CreateUser (string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved,
  90. object providerUserKey, out MembershipCreateStatus status)
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. public override bool DeleteUser (string username, bool deleteAllRelatedData)
  95. {
  96. throw new NotImplementedException ();
  97. }
  98. public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. public override MembershipUserCollection FindUsersByName (string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
  103. {
  104. throw new NotImplementedException ();
  105. }
  106. public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
  107. {
  108. throw new NotImplementedException ();
  109. }
  110. public override int GetNumberOfUsersOnline ()
  111. {
  112. throw new NotImplementedException ();
  113. }
  114. public override string GetPassword (string username, string answer)
  115. {
  116. throw new NotImplementedException ();
  117. }
  118. public override MembershipUser GetUser (object providerUserKey, bool userIsOnline)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. public override MembershipUser GetUser (string username, bool userIsOnline)
  123. {
  124. throw new NotImplementedException ();
  125. }
  126. public override string GetUserNameByEmail (string email)
  127. {
  128. throw new NotImplementedException ();
  129. }
  130. public void Logout ()
  131. {
  132. throw new NotImplementedException ();
  133. }
  134. public override string ResetPassword (string username, string answer)
  135. {
  136. throw new NotImplementedException ();
  137. }
  138. public override bool UnlockUser (string username)
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. public override void UpdateUser (MembershipUser user)
  143. {
  144. throw new NotImplementedException ();
  145. }
  146. public override bool ValidateUser (string username, string password)
  147. {
  148. throw new NotImplementedException ();
  149. }
  150. }
  151. }
  152. #endif