ProfileManager.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. //
  2. // System.Web.Profile.ProfileManager.cs
  3. //
  4. // Authors:
  5. // Chris Toshok ([email protected])
  6. //
  7. // (C) 2005 Novell, Inc (http://www.novell.com)
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. #if NET_2_0
  29. using System;
  30. using System.Web;
  31. namespace System.Web.Profile
  32. {
  33. public static class ProfileManager
  34. {
  35. [MonoTODO]
  36. public static int DeleteInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public static bool DeleteProfile (string username)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public static int DeleteProfiles (string[] usernames)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. public static int DeleteProfiles (ProfileInfoCollection profiles)
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public static ProfileInfoCollection FindInactiveProfilesByUserName (ProfileAuthenticationOption authenticationOption,
  57. string usernameToMatch, DateTime userInactiveSinceDate)
  58. {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public static ProfileInfoCollection FindInactiveProfilesByUserName (ProfileAuthenticationOption authenticationOption,
  63. string usernameToMatch, DateTime userInactiveSinceDate,
  64. int pageIndex, int pageSize, out int totalRecords)
  65. {
  66. throw new NotImplementedException ();
  67. }
  68. [MonoTODO]
  69. public static ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption,
  70. string usernameToMatch)
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. [MonoTODO]
  75. public static ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption,
  76. string usernameToMatch, int pageIndex, int pageSize,
  77. out int totalRecords)
  78. {
  79. throw new NotImplementedException ();
  80. }
  81. [MonoTODO]
  82. public static ProfileInfoCollection GetAllInactiveProfiles (ProfileAuthenticationOption authenticationOption,
  83. DateTime userInactiveSinceDate)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public static ProfileInfoCollection GetAllInactiveProfiles (ProfileAuthenticationOption authenticationOption,
  89. DateTime userInactiveSinceDate, int pageIndex, int pageSize,
  90. out int totalRecords)
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. [MonoTODO]
  95. public static ProfileInfoCollection GetAllProfiles (ProfileAuthenticationOption authenticationOption)
  96. {
  97. throw new NotImplementedException ();
  98. }
  99. [MonoTODO]
  100. public static ProfileInfoCollection GetAllProfiles (ProfileAuthenticationOption authenticationOption,
  101. int pageIndex, int pageSize, out int totalRecords)
  102. {
  103. throw new NotImplementedException ();
  104. }
  105. [MonoTODO]
  106. public static int GetNumberOfInactiveProfiles (ProfileAuthenticationOption authenticationOption,
  107. DateTime userInactiveSinceDate)
  108. {
  109. throw new NotImplementedException ();
  110. }
  111. [MonoTODO]
  112. public static int GetNumberOfProfiles (ProfileAuthenticationOption authenticationOption)
  113. {
  114. throw new NotImplementedException ();
  115. }
  116. [MonoTODO]
  117. public static string ApplicationName {
  118. get {
  119. throw new NotImplementedException ();
  120. }
  121. set {
  122. throw new NotImplementedException ();
  123. }
  124. }
  125. [MonoTODO]
  126. public static bool AutomaticSaveEnabled {
  127. get {
  128. throw new NotImplementedException ();
  129. }
  130. }
  131. [MonoTODO]
  132. public static bool Enabled {
  133. get {
  134. throw new NotImplementedException ();
  135. }
  136. }
  137. [MonoTODO]
  138. public static ProfileProvider Provider {
  139. get {
  140. throw new NotImplementedException ();
  141. }
  142. }
  143. [MonoTODO]
  144. public static ProfileProviderCollection Providers {
  145. get {
  146. throw new NotImplementedException ();
  147. }
  148. }
  149. }
  150. }
  151. #endif