WebCompiler.cs 723 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Web.Configuration.WebCompiler
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2003 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Collections;
  11. using System.CodeDom.Compiler;
  12. namespace System.Web.Configuration
  13. {
  14. class WebCompiler
  15. {
  16. public string Languages;
  17. public string Extension;
  18. public string Type;
  19. public int WarningLevel;
  20. public string CompilerOptions;
  21. public CodeDomProvider Provider;
  22. public override string ToString ()
  23. {
  24. return "Languages: " + Languages + "\n" +
  25. "Extension: " + Extension + "\n" +
  26. "Type: " + Type + "\n" +
  27. "WarningLevel: " + WarningLevel + "\n" +
  28. "CompilerOptions: " + CompilerOptions + "\n";
  29. }
  30. }
  31. }