FileAuthorizationModule.cs 618 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * Namespace: System.Web.Security
  3. * Class: FileAuthorizationModule
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: ??%
  10. *
  11. * (C) Gaurav Vaish (2002)
  12. */
  13. using System;
  14. using System.Web;
  15. namespace System.Web.Security
  16. {
  17. public sealed class FileAuthorizationModule : IHttpModule
  18. {
  19. public FileAuthorizationModule()
  20. {
  21. }
  22. public void Dispose()
  23. {
  24. }
  25. [MonoTODO]
  26. public void Init(HttpApplication app)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. }
  31. }