2
0

TraceHandler.cs 519 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Web.Handlers.TraceHandler
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System.Web;
  10. using System.Web.UI;
  11. namespace System.Web.Handlers
  12. {
  13. public class TraceHandler : IHttpHandler
  14. {
  15. [MonoTODO]
  16. void IHttpHandler.ProcessRequest (HttpContext context)
  17. {
  18. //TODO: This should generate the trace page.
  19. throw new NotImplementedException ();
  20. }
  21. bool IHttpHandler.IsReusable
  22. {
  23. get {
  24. return false;
  25. }
  26. }
  27. }
  28. }