| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- //
- // System.Web.Security.FormsAuthentication
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class FormsAuthentication
- {
- [MonoTODO]
- public static bool Authenticate (string name, string password)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static FormsAuthenticationTicket Decrypt (string encryptedTicket)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string Encrypt (FormsAuthenticationTicket ticket)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static HttpCookie GetAuthCookie (string userName, bool createPersistentCookie)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static HttpCookie GetAuthCookie (string userName, bool createPersistentCookie, string strCookiePath)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string GetRedirectUrl (string userName, bool createPersistentCookie)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string HashPasswordForStoringInConfigFile (string password, string passwordFormat)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void Initialize ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void RedirectFromLoginPage (string userName, bool createPersistentCookie)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void RedirectFromLoginPage (string userName, bool createPersistentCookie, string strCookiePath)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static FormsAuthenticationTicket RenewTicketIfOld (FormsAuthenticationTicket tOld)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void SetAuthCookie (string userName, bool createPersistentCookie)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void SetAuthCookie (string userName, bool createPersistentCookie, string strCookiePath)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void SignOut ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string FormsCookieName
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public static string FormsCookiePath
- {
- get {
- throw new NotImplementedException ();
- }
- }
- }
- }
|