Browse Source

* IAppManagerAppDomainFactory.cs:
* IProcessHostSupportFunction.cs: signature fixes.

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

Duncan Mak 21 years ago
parent
commit
ab7b6946d8

+ 4 - 0
mcs/class/System.Web/System.Web.Hosting/ChangeLog

@@ -1,6 +1,10 @@
 2004-08-02  Duncan Mak  <[email protected]>
 
 	* IAppManagerAppDomainFactory.cs:
+	* IProcessHostSupportFunction.cs: signature fixes.
+	
+2004-08-02  Duncan Mak  <[email protected]>
+
 	* IApplicationHost.cs:
 	* IHttpWorkerRequestHandler.cs:
 	* IProcessHost.cs:

+ 1 - 1
mcs/class/System.Web/System.Web.Hosting/IAppManagerAppDomainFactory.cs

@@ -34,7 +34,7 @@ namespace System.Web.Hosting
 {
         public interface IAppManagerAppDomainFactory
         {
-                object Create (string s, [In] string app_id);
+                object Create ([In] string s, [In] string app_id);
                 void Stop ();
         }
 }

+ 1 - 1
mcs/class/System.Web/System.Web.Hosting/IProcessHostSupportFunction.cs

@@ -40,7 +40,7 @@ namespace System.Web.Hosting
                         out string physical_path,
                         out string site_name);
 
-                IntPtr GetConfigToken (string s);
+                IntPtr GetConfigToken ([In] string s);
 
                 string GetProcessID ();