Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2004-01-11 16:47:20 +0300
committerAndreas N <andreas@mono-cvs.ximian.com>2004-01-11 16:47:20 +0300
commite5c18812d6bfab418706b61a319d17a3c9196b34 (patch)
treeafdafbbcbe166968579604165bf925b5e07efd3f /mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
parent9bf15946b2e5ba0fcaac4572cd1eb411a03e95a0 (diff)
2004-01-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* SimpleWorkerRequest.cs: Added missing attribute * IISAPIRuntime.cs: Added attributes, fixed signature * IAppDomainFactory.cs: Added attributes, fixed signature svn path=/trunk/mcs/; revision=21937
Diffstat (limited to 'mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
index cf4d7bf6937..f063d294aec 100644
--- a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
+++ b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
@@ -8,13 +8,16 @@
//
using System;
+using System.Runtime.InteropServices;
namespace System.Web.Hosting
{
+ [Guid ("c4918956-485b-3503-bd10-9083e3f6b66c")]
+ [ComVisible (false)]
public interface IISAPIRuntime
{
void DoGCCollect ();
- int ProcessRequest (IntPtr ecb, int useProcessModel);
+ int ProcessRequest ([In] IntPtr ecb, [In] int useProcessModel);
void StartProcessing ();
void StopProcessing ();
}