Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IISAPIRuntime.cs « System.Web.Hosting « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42b6c4217a83074365adabe0354569a0245e1936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// System.Web.Hosting.IISAPIRuntime.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (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 ();
	}
}