AccessMembershipProvider.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. //
  2. // System.Web.Security.AccessMembershipProvider
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Collections.Specialized;
  12. using System.Text;
  13. namespace System.Web.Security {
  14. public class AccessMembershipProvider : IMembershipProvider {
  15. [MonoTODO]
  16. public virtual bool ChangePassword (string username, string oldPwd, string newPwd)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public virtual bool ChangePasswordQuestionAndAnswer (string username, string password, string newPwdQuestion, string newPwdAnswer)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public virtual MembershipUser CreateUser (string username, string password, string email, out MembershipCreateStatus status)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public virtual bool DeleteUser (string username)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public virtual string GeneratePassword ()
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public MembershipUserCollection GetAllUsers ()
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public int GetNumberOfUsersOnline ()
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. public virtual string GetPassword (string username, string answer)
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public virtual MembershipUser GetUser (string username, bool userIsOnline)
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. [MonoTODO]
  61. public virtual string GetUserNameByEmail (string email)
  62. {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. public virtual void Initialize (string name, NameValueCollection config)
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. [MonoTODO]
  71. public virtual string ResetPassword (string username, string answer)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public virtual void UpdateUser (MembershipUser user)
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public virtual bool ValidateUser (string username, string password)
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. [MonoTODO]
  86. public string ApplicationName {
  87. get { throw new NotImplementedException (); }
  88. set { throw new NotImplementedException (); }
  89. }
  90. [MonoTODO]
  91. public virtual string Description {
  92. get { throw new NotImplementedException (); }
  93. }
  94. [MonoTODO]
  95. public virtual bool EnablePasswordReset {
  96. get { throw new NotImplementedException (); }
  97. }
  98. [MonoTODO]
  99. public virtual bool EnablePasswordRetrieval {
  100. get { throw new NotImplementedException (); }
  101. }
  102. [MonoTODO]
  103. public virtual string Name {
  104. get { throw new NotImplementedException (); }
  105. }
  106. [MonoTODO]
  107. public virtual MembershipPasswordFormat PasswordFormat {
  108. get { throw new NotImplementedException (); }
  109. }
  110. [MonoTODO]
  111. public virtual bool RequiresQuestionAndAnswer {
  112. get { throw new NotImplementedException (); }
  113. }
  114. [MonoTODO]
  115. public virtual bool RequiresUniqueEmail {
  116. get { throw new NotImplementedException (); }
  117. }
  118. }
  119. }
  120. #endif