| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * Namespace: System.Web.Security
- * Class: DefaultAuthenticationEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class DefaultAuthenticationEventArgs : EventArgs
- {
- HttpContext context;
- public DefaultAuthenticationEventArgs(HttpContext context)
- {
- this.context = context;
- }
-
- public HttpContext Context
- {
- get
- {
- return context;
- }
- }
- }
- }
|