ClientWindowsAuthenticationMembershipProvider.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. using System;
  30. using System.Collections.Specialized;
  31. using System.ComponentModel;
  32. using System.Net;
  33. using System.Security;
  34. using System.Security.Principal;
  35. using System.Web;
  36. using System.Web.Security;
  37. using System.Web.UI;
  38. namespace System.Web.ClientServices.Providers
  39. {
  40. public class ClientWindowsAuthenticationMembershipProvider : MembershipProvider
  41. {
  42. public override string ApplicationName {
  43. get { throw new NotImplementedException (); }
  44. set { throw new NotImplementedException (); }
  45. }
  46. public override bool EnablePasswordReset {
  47. get { throw new NotImplementedException (); }
  48. }
  49. public override bool EnablePasswordRetrieval {
  50. get { throw new NotImplementedException (); }
  51. }
  52. public override int MaxInvalidPasswordAttempts {
  53. get { throw new NotImplementedException (); }
  54. }
  55. public override int MinRequiredNonAlphanumericCharacters {
  56. get { throw new NotImplementedException (); }
  57. }
  58. public override int MinRequiredPasswordLength {
  59. get { throw new NotImplementedException (); }
  60. }
  61. public override int PasswordAttemptWindow {
  62. get { throw new NotImplementedException (); }
  63. }
  64. public override System.Web.Security.MembershipPasswordFormat PasswordFormat {
  65. get { throw new NotImplementedException (); }
  66. }
  67. public override string PasswordStrengthRegularExpression {
  68. get { throw new NotImplementedException (); }
  69. }
  70. public override bool RequiresQuestionAndAnswer {
  71. get { throw new NotImplementedException (); }
  72. }
  73. public override bool RequiresUniqueEmail {
  74. get { throw new NotImplementedException (); }
  75. }
  76. public ClientWindowsAuthenticationMembershipProvider ()
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. public override bool ChangePassword (string username, string oldPassword, string newPassword)
  81. {
  82. throw new NotImplementedException ();
  83. }
  84. public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPasswordQuestion, string newPasswordAnswer)
  85. {
  86. throw new NotImplementedException ();
  87. }
  88. public override MembershipUser CreateUser (string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved,
  89. object providerUserKey, out MembershipCreateStatus status)
  90. {
  91. throw new NotImplementedException ();
  92. }
  93. public override bool DeleteUser (string username, bool deleteAllRelatedData)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
  98. {
  99. throw new NotImplementedException ();
  100. }
  101. public override MembershipUserCollection FindUsersByName (string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
  102. {
  103. throw new NotImplementedException ();
  104. }
  105. public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
  106. {
  107. throw new NotImplementedException ();
  108. }
  109. public override int GetNumberOfUsersOnline ()
  110. {
  111. throw new NotImplementedException ();
  112. }
  113. public override string GetPassword (string username, string answer)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. public override MembershipUser GetUser (object providerUserKey, bool userIsOnline)
  118. {
  119. throw new NotImplementedException ();
  120. }
  121. public override MembershipUser GetUser (string username, bool userIsOnline)
  122. {
  123. throw new NotImplementedException ();
  124. }
  125. public override string GetUserNameByEmail (string email)
  126. {
  127. throw new NotImplementedException ();
  128. }
  129. public void Logout ()
  130. {
  131. throw new NotImplementedException ();
  132. }
  133. public override string ResetPassword (string username, string answer)
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. public override bool UnlockUser (string username)
  138. {
  139. throw new NotImplementedException ();
  140. }
  141. public override void UpdateUser (MembershipUser user)
  142. {
  143. throw new NotImplementedException ();
  144. }
  145. public override bool ValidateUser (string username, string password)
  146. {
  147. throw new NotImplementedException ();
  148. }
  149. }
  150. }