|
@@ -12,16 +12,32 @@ using System.CodeDom.Compiler;
|
|
|
namespace System.Web {
|
|
namespace System.Web {
|
|
|
public sealed class HttpCompileException : HttpException {
|
|
public sealed class HttpCompileException : HttpException {
|
|
|
|
|
|
|
|
|
|
+ #region Fields
|
|
|
|
|
+
|
|
|
|
|
+ CompilerResults results;
|
|
|
|
|
+ string sourceCode;
|
|
|
|
|
+
|
|
|
|
|
+ #endregion // Fields
|
|
|
|
|
+
|
|
|
|
|
+ #region Constructors
|
|
|
|
|
+
|
|
|
|
|
+ internal HttpCompileException (CompilerResults results, string sourceCode)
|
|
|
|
|
+ : base ()
|
|
|
|
|
+ {
|
|
|
|
|
+ this.results = results;
|
|
|
|
|
+ this.sourceCode = sourceCode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ #endregion // Constructors
|
|
|
|
|
+
|
|
|
#region Properties
|
|
#region Properties
|
|
|
|
|
|
|
|
public CompilerResults Results {
|
|
public CompilerResults Results {
|
|
|
- [MonoTODO]
|
|
|
|
|
- get { throw new NotImplementedException (); }
|
|
|
|
|
|
|
+ get { return results; }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public string SourceCode {
|
|
public string SourceCode {
|
|
|
- [MonoTODO]
|
|
|
|
|
- get { throw new NotImplementedException (); }
|
|
|
|
|
|
|
+ get { return sourceCode; }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endregion // Properties
|
|
#endregion // Properties
|