* Makefile: Build the make-map.exe in Mono.Unix.Native; add /nowarn:0618 to
[mono.git] / mcs / class / System.Web / System.Web / HttpCompileException.cs
1 // 
2 // System.Web.HttpCompileException.cs
3 //
4 // Authors:
5 //      Tim Coleman (tim@timcoleman.com)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) Tim Coleman, 2002
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.CodeDom.Compiler;
32 using System.Runtime.Serialization;
33 using System.Security.Permissions;
34
35 namespace System.Web {
36
37         // CAS - no InheritanceDemand here as the class is sealed
38         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
39 #if NET_2_0
40         [Serializable]
41 #endif
42         public sealed class HttpCompileException : HttpException {
43
44                 CompilerResults results;
45                 string sourceCode;
46
47 #if NET_2_0
48                 public HttpCompileException ()
49                 {
50                 }
51
52                 public HttpCompileException (string message)
53                         : base (message)
54                 {
55                 }
56
57                 public HttpCompileException (string message, Exception innerException)
58                         : base (message, innerException)
59                 {
60                 }
61
62                 public HttpCompileException (CompilerResults results, string sourceCode)
63 #else
64                 internal HttpCompileException (CompilerResults results, string sourceCode)
65 #endif
66                 {
67                         this.results = results;
68                         this.sourceCode = sourceCode;
69                 }
70
71
72                 public CompilerResults Results {
73                         [AspNetHostingPermission (SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High)]
74                         get { return results; }
75                 }
76
77                 public string SourceCode {
78                         [AspNetHostingPermission (SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High)]
79                         get { return sourceCode; }
80                 }
81 #if NET_2_0
82                 public override string Message {
83                         get { return base.Message; }
84                 }
85
86                 [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
87                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
88                 {
89                         base.GetObjectData (info, context);
90                         sourceCode = info.GetString ("sourcecode");
91                         results = (CompilerResults) info.GetValue ("results", typeof (CompilerResults));
92                 }
93 #endif
94         }
95 }