DefaultAuthenticationEventArgs.cs 568 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Web.Security.DefaultAuthenticationEventArgs
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. namespace System.Web.Security {
  10. using System;
  11. using System.Web;
  12. public sealed class DefaultAuthenticationEventArgs : EventArgs
  13. {
  14. private HttpContext _context;
  15. public DefaultAuthenticationEventArgs (HttpContext context)
  16. {
  17. if (context == null)
  18. throw new ArgumentNullException ("context");
  19. _context = context;
  20. }
  21. public HttpContext Context
  22. {
  23. get { return _context; }
  24. }
  25. }
  26. }