| 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(in IntPtr ecb, in int useProcessModel);
- void StartProcessing();
- void StopProcessing();
- }
- }
|