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

TemplateParser.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: 9121da5131a1e1e85175c9c084487544d0e870e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Web.UI.TemplateParser.cs
//
// Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Web.UI {

	public abstract class TemplateParser : BaseParser
	{
		protected abstract Type CompileIntoType ();
	}
}