// // System.Web.Hosting.IISAPIRuntime.cs // // Author: // Bob Smith // // (C) Bob Smith // using System; using System.Runtime.InteropServices; namespace System.Web.Hosting { [Guid ("c4918956-485b-3503-bd10-9083e3f6b66c")] [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] public interface IISAPIRuntime { void DoGCCollect (); [return: MarshalAs (UnmanagedType.I4)] int ProcessRequest ([In] IntPtr ecb, [In, MarshalAs(UnmanagedType.I4)] int useProcessModel); void StartProcessing (); void StopProcessing (); } }