2
0

ApplicationFileParser.cs 803 B

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