2004-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Security / PassportAuthenticationModule.cs
1 //
2 // System.Web.Security.PassportAuthenticationModule
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.com)
8 //
9
10 using System.Web;
11
12 namespace System.Web.Security
13 {
14         public sealed class PassportAuthenticationModule : IHttpModule
15         {
16                 public event PassportAuthenticationEventHandler Authenticate;
17
18                 public void Dispose ()
19                 {
20                 }
21
22                 [MonoTODO("Will we ever implement this? :-)")]
23                 public void Init (HttpApplication app)
24                 {
25                         throw new NotImplementedException ();
26                 }
27         }
28 }
29