| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * Namespace: System.Web.Security
- * Class: DefaultAuthenticationModule
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: ??%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class DefaultAuthenticationModule : IHttpModule
- {
- private DefaultAuthenticationEventHandler authenticate;
-
- public DefaultAuthenticationModule()
- {
- }
-
- public void Dispose()
- {
- }
-
- [MonoTODO]
- public void Init(HttpApplication app)
- {
- //TODO: I have to add a DefaultAuthenticationEventHandler sort of thing
- // Could not find a suitable public delegate in HttpApplication.
- // Also need to define a method.
- throw new NotImplementedException();
- }
-
- public event DefaultAuthenticationEventHandler Authenticate
- {
- add
- {
- authenticate += value;
- }
- remove
- {
- authenticate -= value;
- }
- }
- }
- }
|