2002-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Hosting / ISAPIRuntime.cs
1 //
2 // System.Web.Hosting.ISAPIRuntime.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //   Gonzalo Paniagua (gonzalo@ximian.com)
7 //
8 // (C) Bob Smith
9 // (c) 2002 Ximian, Inc. (http://www.ximian.com)
10 //
11
12 using System;
13
14 namespace System.Web.Hosting
15 {
16         public sealed class ISAPIRuntime : IISAPIRuntime
17         {
18                 [MonoTODO]
19                 public ISAPIRuntime ()
20                 {
21                         throw new NotImplementedException ();
22                 }
23                 
24                 [MonoTODO]
25                 public void DoGCCollect ()
26                 {
27                         throw new NotImplementedException ();
28                 }
29                 
30                 [MonoTODO]
31                 public int ProcessRequest (IntPtr ecb, int iWRType)
32                 {
33                         throw new NotImplementedException ();
34                 }
35                 
36                 [MonoTODO]
37                 public void StartProcessing ()
38                 {
39                         throw new NotImplementedException ();
40                 }
41                 
42                 [MonoTODO]
43                 public void StopProcessing ()
44                 {
45                         throw new NotImplementedException ();
46                 }
47         }
48 }