AnonymousIdentificationEventArgs.cs 584 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // System.Web.Security.AnonymousIdentificationEventArgs
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. namespace System.Web.Security {
  11. public sealed class AnonymousIdentificationEventArgs : EventArgs {
  12. public AnonymousIdentificationEventArgs (HttpContext context)
  13. {
  14. this.context = context;
  15. }
  16. HttpContext context;
  17. public HttpContext Context {
  18. get { return context; }
  19. }
  20. string anonymousId;
  21. public string AnonymousId {
  22. get { return anonymousId; }
  23. set { anonymousId = value; }
  24. }
  25. }
  26. }
  27. #endif