| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Web.Security.PassportAuthenticationModule
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class PassportAuthenticationModule : IHttpModule
- {
- public event PassportAuthenticationEventHandler Authenticate;
- public void Dispose ()
- {
- }
- [MonoTODO("Will we ever implement this? :-)")]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
|