CompilationResult.cs 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // System.Web.Compilation.CompilationResult
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. namespace System.Web.Compilation
  11. {
  12. internal class CompilationResult
  13. {
  14. int exitCode;
  15. string output;
  16. string outputFile;
  17. object data;
  18. public CompilationResult ()
  19. {
  20. }
  21. public void Reset ()
  22. {
  23. exitCode = 0;
  24. output = null;
  25. }
  26. public int ExitCode
  27. {
  28. get { return exitCode; }
  29. set { exitCode = exitCode; }
  30. }
  31. public string CompilerOutput
  32. {
  33. get { return output; }
  34. set { output = value; }
  35. }
  36. public string OutputFile
  37. {
  38. get { return outputFile; }
  39. set { outputFile = value; }
  40. }
  41. public object Data
  42. {
  43. get { return data; }
  44. set { data = value; }
  45. }
  46. }
  47. }