FormsAuthentication.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. //
  2. // System.Web.Security.FormsAuthentication
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.Security
  12. {
  13. public sealed class FormsAuthentication
  14. {
  15. [MonoTODO]
  16. public static bool Authenticate (string name, string password)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public static FormsAuthenticationTicket Decrypt (string encryptedTicket)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static string Encrypt (FormsAuthenticationTicket ticket)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public static HttpCookie GetAuthCookie (string userName, bool createPersistentCookie)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public static HttpCookie GetAuthCookie (string userName, bool createPersistentCookie, string strCookiePath)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public static string GetRedirectUrl (string userName, bool createPersistentCookie)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public static string HashPasswordForStoringInConfigFile (string password, string passwordFormat)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. public static void Initialize ()
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public static void RedirectFromLoginPage (string userName, bool createPersistentCookie)
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. [MonoTODO]
  61. public static void RedirectFromLoginPage (string userName, bool createPersistentCookie, string strCookiePath)
  62. {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. public static FormsAuthenticationTicket RenewTicketIfOld (FormsAuthenticationTicket tOld)
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. [MonoTODO]
  71. public static void SetAuthCookie (string userName, bool createPersistentCookie)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public static void SetAuthCookie (string userName, bool createPersistentCookie, string strCookiePath)
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public static void SignOut ()
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. [MonoTODO]
  86. public static string FormsCookieName
  87. {
  88. get {
  89. throw new NotImplementedException ();
  90. }
  91. }
  92. [MonoTODO]
  93. public static string FormsCookiePath
  94. {
  95. get {
  96. throw new NotImplementedException ();
  97. }
  98. }
  99. }
  100. }