2
0

UrlAuthorizationModule.cs 513 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // System.Web.Security.UrlAuthorizationModule
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Web;
  11. using System.Security.Principal;
  12. namespace System.Web.Security
  13. {
  14. public sealed class UrlAuthorizationModule : IHttpModule
  15. {
  16. public UrlAuthorizationModule ()
  17. {
  18. }
  19. public void Dispose ()
  20. {
  21. }
  22. [MonoTODO]
  23. public void Init (HttpApplication app)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }