| 123456789101112131415161718192021222324252627 |
- //
- // System.Web.UI.PageHandlerFactory
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System.Web;
- using System.Web.Compilation;
- namespace System.Web.UI
- {
- class PageHandlerFactory : IHttpHandlerFactory
- {
- public virtual IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path)
- {
- return PageParser.GetCompiledPageInstance (url, path, context);
- }
- public virtual void ReleaseHandler (IHttpHandler handler)
- {
- }
- }
- }
|