| 123456789101112131415161718192021222324 |
- //
- // System.Web.Hosting.IISAPIRuntime.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (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 ();
- int ProcessRequest ([In] IntPtr ecb, [In] int useProcessModel);
- void StartProcessing ();
- void StopProcessing ();
- }
- }
|