RoleManagerEventArgs.cs 640 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Web.Security.RoleManagerEventArgs
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Collections.Specialized;
  12. using System.Text;
  13. namespace System.Web.Security {
  14. public sealed class RoleManagerEventArgs : EventArgs {
  15. public RoleManagerEventArgs (HttpContext context)
  16. {
  17. this.context = context;
  18. }
  19. HttpContext context;
  20. public HttpContext Context {
  21. get { return context; }
  22. }
  23. bool rolesPopulated;
  24. public bool RolesPopulated {
  25. get { return rolesPopulated; }
  26. set { rolesPopulated = value; }
  27. }
  28. }
  29. }
  30. #endif