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: bad6cc4ef8045f333bd3d4cc6bf9e758f61b4765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Web.Hosting.IISAPIRuntime.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (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();
        }
}