| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * Namespace: System.Web.Security
- * Class: FormsAuthenticationEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 90%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- using System.Security.Principal;
- namespace System.Web.Security
- {
- public sealed class FormsAuthenticationEventArgs : EventArgs
- {
- HttpContext context;
- IPrincipal user;
- public FormsAuthenticationEventArgs(HttpContext context)
- {
- this.context = context;
- }
- public HttpContext Context
- {
- get
- {
- return context;
- }
- }
- [MonoTODO]
- public IPrincipal User
- {
- get
- {
- return user;
- }
- set
- {
- // context.User?
- throw new NotImplementedException();
- }
- }
- }
- }
|