| 123456789101112131415161718192021 |
- //
- // System.Web.Hosting.IISAPIRuntime.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- namespace System.Web.Hosting
- {
- public interface IISAPIRuntime
- {
- void DoGCCollect ();
- int ProcessRequest (IntPtr ecb, int useProcessModel);
- void StartProcessing ();
- void StopProcessing ();
- }
- }
|