2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 31 Jan 2006 00:18:42 +0000 (00:18 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 31 Jan 2006 00:18:42 +0000 (00:18 -0000)
* AppManagerAppDomainFactory.cs: stubbed out.

svn path=/trunk/mcs/; revision=56303

mcs/class/System.Web/System.Web.Hosting/AppManagerAppDomainFactory.cs [new file with mode: 0644]
mcs/class/System.Web/System.Web.Hosting/ApplicationInfo.cs
mcs/class/System.Web/System.Web.Hosting/ChangeLog

diff --git a/mcs/class/System.Web/System.Web.Hosting/AppManagerAppDomainFactory.cs b/mcs/class/System.Web/System.Web.Hosting/AppManagerAppDomainFactory.cs
new file mode 100644 (file)
index 0000000..c4064d1
--- /dev/null
@@ -0,0 +1,52 @@
+//
+// System.Web.Hosting.AppManagerAppDomainFactory
+// 
+// Author:
+//     Gonzalo Paniagua Javier (gonzalo@novell.com)
+//
+//
+// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+#if NET_2_0
+using System;
+
+namespace System.Web.Hosting {
+       public sealed class AppManagerAppDomainFactory : IAppManagerAppDomainFactory {
+               public AppManagerAppDomainFactory ()
+               {
+               }
+
+               [MonoTODO]
+               public object Create (string appId, string appPath)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public void Stop ()
+               {
+                       // Stop all the stuff that we Create'd here
+               }
+       }
+}
+
+#endif
+
index 8cfa3e18761989a26bcd3179d0bddcad2011bed6..5ce539bcf83cb49328206c936e587e83965bc095 100644 (file)
@@ -1,5 +1,5 @@
 //
-// System.Web.Hosting.ApplicationManager
+// System.Web.Hosting.ApplicationInfo
 // 
 // Author:
 //     Gonzalo Paniagua Javier (gonzalo@novell.com)
index edeeea1b1bd2dd1ccddba1cdd92759fd083baf0e..ba359c83a40387faedebd51b1379c5d975d558ae 100644 (file)
@@ -1,5 +1,7 @@
 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
+       * AppManagerAppDomainFactory.cs: stubbed out.
+
        * ApplicationInfo.cs:
        * ApplicationManager.cs: add 2 new classes.