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

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

using System;

namespace System.Web.Hosting
{
        public sealed class ISAPIRuntime : IISAPIRuntime
        {
                public ISAPIRuntime();
                public void DoGCCollect();
                public int ProcessRequest(IntPtr ecb, int iWRType);
                public void StartProcessing();
                public void StopProcessing();
        }
}