DefaultAuthenticationEventHandler.cs 328 B

123456789101112131415
  1. //
  2. // System.Web.Security.DefaultAuthenticationEventHandler
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. namespace System.Web.Security
  10. {
  11. public delegate void DefaultAuthenticationEventHandler (object sender,
  12. DefaultAuthenticationEventArgs e);
  13. }