| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Web.Security.DefaultAuthenticationEventArgs
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- namespace System.Web.Security {
- using System;
- using System.Web;
-
- public sealed class DefaultAuthenticationEventArgs : EventArgs
- {
- private HttpContext _context;
- public DefaultAuthenticationEventArgs (HttpContext context)
- {
- if (context == null)
- throw new ArgumentNullException ("context");
- _context = context;
- }
- public HttpContext Context
- {
- get { return _context; }
- }
- }
- }
|