2002-10-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ApplicationFileParser.cs
1 //
2 // System.Web.UI.ApplicationfileParser
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.com)
8 //
9 using System;
10 using System.Web;
11
12 namespace System.Web.UI
13 {
14         internal sealed class ApplicationFileParser : TemplateParser
15         {
16                 [MonoTODO]
17                 protected override Type CompileIntoType ()
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22                 [MonoTODO]
23                 internal static Type GetCompiledApplicationType (string inputFile, 
24                                                                  HttpContext context,
25                                                                  ref ApplicationFileParser parser)
26                 {
27                         throw new NotImplementedException ();
28                 }
29
30                 protected override Type DefaultBaseType
31                 {
32                         get {
33                                 return typeof (HttpApplication);
34                         }
35                 }
36
37                 protected override string DefaultDirectiveName
38                 {
39                         get {
40                                 return "application";
41                         }
42                 }
43         }
44
45 }
46