Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PageHandlerFactory.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db9238b254fdc565934624c04d87d749cae5e806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// System.Web.UI.PageHandlerFactory
//
// Authors:
//	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (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)
		{
		}
	}
}