| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Web.Security.AnonymousIdentificationModule
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- using System.Collections;
- using System.Collections.Specialized;
- using System.Text;
- namespace System.Web.Security {
- public sealed class AnonymousIdentificationModule : IHttpModule {
- public event AnonymousIdentificationEventHandler OnCreate;
- public event EventHandler OnRemove;
-
-
- [MonoTODO]
- public void Dispose ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static bool Enabled {
- get { throw new NotImplementedException (); }
- }
- }
- }
- #endif
|