SimpleHandlerFactory.cs 580 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // System.Web.UI.SimpleHandlerFactory
  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. namespace System.Web.UI
  11. {
  12. class SimpleHandlerFactory : IHttpHandlerFactory
  13. {
  14. [MonoTODO]
  15. public virtual IHttpHandler GetHandler (HttpContext context,
  16. string requestType,
  17. string virtualPath,
  18. string path)
  19. {
  20. // This should handle *.ashx files
  21. throw new NotImplementedException ();
  22. }
  23. public virtual void ReleaseHandler (System.Web.IHttpHandler handler)
  24. {
  25. }
  26. }
  27. }