AnonymousIdentificationModule.cs 753 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // System.Web.Security.AnonymousIdentificationModule
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Collections.Specialized;
  12. using System.Text;
  13. namespace System.Web.Security {
  14. public sealed class AnonymousIdentificationModule : IHttpModule {
  15. public event AnonymousIdentificationEventHandler OnCreate;
  16. public event EventHandler OnRemove;
  17. [MonoTODO]
  18. public void Dispose ()
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public void Init (HttpApplication app)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public static bool Enabled {
  29. get { throw new NotImplementedException (); }
  30. }
  31. }
  32. }
  33. #endif