[Http]: Clear the 'SendChunked' flag when redirecting.
[mono.git] / mcs / class / System / System.CodeDom.Compiler / CompilerResults.cs
1 //
2 // System.CodeDom.Compiler.CompilerResults.cs
3 //
4 // Authors:
5 //   Daniel Stodden (stodden@in.tum.de)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) 2002 Ximian, Inc.
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Collections.Specialized;
32 using System.Reflection;
33 using System.Security.Permissions;
34 using System.Security.Policy;
35
36 namespace System.CodeDom.Compiler {
37
38         [Serializable]
39         [PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
40         [PermissionSet (SecurityAction.InheritanceDemand, Unrestricted = true)]
41         public class CompilerResults {
42
43                 private Assembly compiledAssembly;
44                 private CompilerErrorCollection errors = new CompilerErrorCollection ();
45                 private Evidence evidence;
46                 private int nativeCompilerReturnValue = 0;
47                 private StringCollection output = new StringCollection ();
48                 private string pathToAssembly;
49                 private TempFileCollection tempFiles;
50                 
51                 //
52                 // Constructors
53                 //
54                 public CompilerResults (TempFileCollection tempFiles)
55                 {
56                         this.tempFiles = tempFiles;
57                 }
58
59                 //
60                 // Properties
61                 //
62                 public Assembly CompiledAssembly {
63                         get {
64                                 if ((compiledAssembly == null) && (pathToAssembly != null))
65                                         compiledAssembly = Assembly.LoadFrom (pathToAssembly);
66                                 return compiledAssembly;
67                         }
68                         set {
69                                 compiledAssembly = value;
70                         }
71                 }
72
73                 public CompilerErrorCollection Errors {
74                         get {
75                                 if (errors == null)
76                                         errors = new CompilerErrorCollection();
77                                 return errors;
78                         }
79                 }
80
81 #if NET_4_0
82                 [Obsolete]
83 #endif
84                 public Evidence Evidence {
85                         get { return evidence; }
86                         [SecurityPermission (SecurityAction.Demand, ControlEvidence = true)]
87                         set { evidence = value; }
88                 }
89
90                 public int NativeCompilerReturnValue {
91                         get {
92                                 return nativeCompilerReturnValue;
93                         }
94                         set {
95                                 nativeCompilerReturnValue = value;
96                         }
97                 }
98
99                 public StringCollection Output {
100                         get {
101                                 if (output == null)
102                                         output = new StringCollection();
103                                 return output;
104                         }
105                         internal set {
106                                 output = value;
107                         }
108                 }
109
110                 public string PathToAssembly {
111                         get {
112                                 return pathToAssembly;
113                         }
114                         set {
115                                 pathToAssembly = value;
116                         }
117                 }
118
119                 public TempFileCollection TempFiles {
120                         get {
121                                 return tempFiles;
122                         }
123                         set {
124                                 tempFiles = value;
125                         }
126                 }
127         }
128 }