PageHandlerFactory.cs 541 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Web.UI.PageHandlerFactory
  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.Compilation;
  11. namespace System.Web.UI
  12. {
  13. class PageHandlerFactory : IHttpHandlerFactory
  14. {
  15. public virtual IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path)
  16. {
  17. return PageParser.GetCompiledPageInstance (url, path, context);
  18. }
  19. public virtual void ReleaseHandler (IHttpHandler handler)
  20. {
  21. }
  22. }
  23. }