DefaultAuthenticationEventArgs.cs 651 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Namespace: System.Web.Security
  3. * Class: DefaultAuthenticationEventArgs
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2002)
  12. */
  13. using System;
  14. using System.Web;
  15. namespace System.Web.Security
  16. {
  17. public sealed class DefaultAuthenticationEventArgs : EventArgs
  18. {
  19. HttpContext context;
  20. public DefaultAuthenticationEventArgs(HttpContext context)
  21. {
  22. this.context = context;
  23. }
  24. public HttpContext Context
  25. {
  26. get
  27. {
  28. return context;
  29. }
  30. }
  31. }
  32. }