EndEventHandler.cs 196 B

12345678910111213
  1. //
  2. // System.Web.EndEventHandler.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. namespace System.Web
  10. {
  11. public delegate void EndEventHandler(IAsyncResult ar);
  12. }