RoleManagerModule.cs 574 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // System.Web.Security.RoleManagerModule
  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 RoleManagerModule : IHttpModule {
  15. public event RoleManagerEventHandler GetRoles;
  16. [MonoTODO]
  17. public void Dispose ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public void Init (HttpApplication app)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }
  28. #endif