// // System.Web.Hosting.IISAPIRuntime.cs // // Author: // Bob Smith // // (C) Bob Smith // using System; namespace System.Web.Hosting { public interface IISAPIRuntime { void DoGCCollect (); int ProcessRequest (IntPtr ecb, int useProcessModel); void StartProcessing (); void StopProcessing (); } }