2
0

AnonymousIdentificationEventHandler.cs 318 B

123456789101112131415
  1. //
  2. // System.Web.Security.AnonymousIdentificationEventHandler
  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 delegate void AnonymousIdentificationEventHandler (object sender, AnonymousIdentificationEventArgs e);
  12. }
  13. #endif