| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.Web.UI.ApplicationfileParser
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- internal sealed class ApplicationFileParser : TemplateParser
- {
- [MonoTODO]
- protected override Type CompileIntoType ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- internal static Type GetCompiledApplicationType (string inputFile,
- HttpContext context,
- ref ApplicationFileParser parser)
- {
- throw new NotImplementedException ();
- }
- protected override Type DefaultBaseType
- {
- get {
- return typeof (HttpApplication);
- }
- }
- protected override string DefaultDirectiveName
- {
- get {
- return "application";
- }
- }
- }
- }
|