stub out the 2.0 System.Web.Compilation stuff.
[mono.git] / mcs / class / System.Web / System.Web.Compilation / ClientBuildManager.cs
1 //
2 // System.Web.Compilation.ClientBuildManager
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2006 Novell, Inc (http://www.novell.com)
8 //
9
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 #if NET_2_0
32
33 using System;
34 using System.CodeDom;
35 using System.CodeDom.Compiler;
36 using System.Collections;
37 using System.Web;
38 using System.Web.Hosting;
39
40 namespace System.Web.Compilation {
41
42         public sealed class ClientBuildManager : MarshalByRefObject, IDisposable
43         {
44                 [MonoTODO]
45                 public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 [MonoTODO]
51                 public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir)
52                 {
53                         throw new NotImplementedException ();
54                 }
55
56                 [MonoTODO]
57                 public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir, ClientBuildManagerParameter parameter)
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62                 [MonoTODO]
63                 public void CompileApplicationDependencies ()
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public void CompileFile (string virtualPath)
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 [MonoTODO]
75                 public void CompileFile (string virtualPath, ClientBuildManagerCallback callback)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 [MonoTODO]
81                 public IRegisteredObject CreateObject (Type type, bool failIfExists)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 [MonoTODO]
87                 public string GenerateCode (string virtualPath, string virtualFileString, out IDictionary linePragmasTable)
88                 {
89                         throw new NotImplementedException ();
90                 }
91
92                 [MonoTODO]
93                 public CodeCompileUnit GenerateCodeCompileUnit (string virtualPath, string virtualFileString, out Type codeDomProviderType, out CompilerParameters compilerParameters, out IDictionary linePragmasTable)
94                 {
95                         throw new NotImplementedException ();
96                 }
97
98                 [MonoTODO]
99                 public CodeCompileUnit GenerateCodeCompileUnit (string virtualPath, out Type codeDomProviderType, out CompilerParameters compilerParameters, out IDictionary linePragmasTable)
100                 {
101                         throw new NotImplementedException ();
102                 }
103
104                 [MonoTODO]
105                 public string[ ] GetAppDomainShutdownDirectories ()
106                 {
107                         throw new NotImplementedException ();
108                 }
109
110                 [MonoTODO]
111                 public IDictionary GetBrowserDefinitions ()
112                 {
113                         throw new NotImplementedException ();
114                 }
115
116                 [MonoTODO]
117                 public void GetCodeDirectoryInformation (string virtualCodeDir, out Type codeDomProviderType, out CompilerParameters compilerParameters, out string generatedFilesDir)
118                 {
119                         throw new NotImplementedException ();
120                 }
121
122                 [MonoTODO]
123                 public Type GetCompiledType (string virtualPath)
124                 {
125                         throw new NotImplementedException ();
126                 }
127
128                 [MonoTODO]
129                 public void GetCompilerParameters (string virtualPath, out Type codeDomProviderType, out CompilerParameters compilerParameters)
130                 {
131                         throw new NotImplementedException ();
132                 }
133
134                 [MonoTODO]
135                 public string GetGeneratedFileVirtualPath (string filePath)
136                 {
137                         throw new NotImplementedException ();
138                 }
139
140                 [MonoTODO]
141                 public string GetGeneratedSourceFile (string virtualPath)
142                 {
143                         throw new NotImplementedException ();
144                 }
145
146                 [MonoTODO]
147                 public string[ ] GetTopLevelAssemblyReferences (string virtualPath)
148                 {
149                         throw new NotImplementedException ();
150                 }
151
152                 [MonoTODO]
153                 public string[ ] GetVirtualCodeDirectories ()
154                 {
155                         throw new NotImplementedException ();
156                 }
157
158                 public override object InitializeLifetimeService ()
159                 {
160                         return null;
161                 }
162
163                 [MonoTODO]
164                 public bool IsCodeAssembly (string assemblyName)
165                 {
166                         throw new NotImplementedException ();
167                 }
168
169                 [MonoTODO]
170                 public void PrecompileApplication ()
171                 {
172                         throw new NotImplementedException ();
173                 }
174
175                 [MonoTODO]
176                 public void PrecompileApplication (ClientBuildManagerCallback callback)
177                 {
178                         throw new NotImplementedException ();
179                 }
180
181                 [MonoTODO]
182                 public void PrecompileApplication (ClientBuildManagerCallback callback, bool forceCleanBuild)
183                 {
184                         throw new NotImplementedException ();
185                 }
186
187                 [MonoTODO]
188                 public bool Unload ()
189                 {
190                         throw new NotImplementedException ();
191                 }
192
193                 [MonoTODO]
194                 public string CodeGenDir {
195                         get {
196                                 throw new NotImplementedException ();
197                         }
198                 }
199
200                 [MonoTODO]
201                 public bool IsHostCreated {
202                         get {
203                                 throw new NotImplementedException ();
204                         }
205                 }
206
207                 public event BuildManagerHostUnloadEventHandler AppDomainShutdown;
208                 public event EventHandler AppDomainStarted;
209                 public event BuildManagerHostUnloadEventHandler AppDomainUnloaded;
210
211
212                 [MonoTODO]
213                 void IDisposable.Dispose ()
214                 {
215                         throw new NotImplementedException ();
216                 }
217
218         }
219
220 }
221
222 #endif