002-08-23 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / WebServiceHandler.cs
1 // \r
2 // System.Web.Services.Protocols.WebServiceHandler.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9 \r
10 using System;\r
11 using System.Web.Services;\r
12 \r
13 namespace System.Web.Services.Protocols {\r
14         internal class WebServiceHandler {\r
15 \r
16                 #region Fields\r
17 \r
18                 ServerProtocol protocol;\r
19 \r
20                 #endregion // Fields\r
21 \r
22                 #region Constructors\r
23 \r
24                 [MonoTODO]\r
25                 public WebServiceHandler (ServerProtocol protocol)\r
26                 {\r
27                         this.protocol = protocol;\r
28                 }\r
29 \r
30                 #endregion // Constructors\r
31 \r
32                 #region Methods\r
33 \r
34                 [MonoTODO]\r
35                 protected IAsyncResult BeginCoreProcessRequest (AsyncCallback callback, object o)\r
36                 {\r
37                         throw new NotImplementedException ();\r
38                 }\r
39 \r
40                 [MonoTODO]\r
41                 protected void CoreProcessRequest ()\r
42                 {\r
43                         Invoke ();\r
44                         throw new NotImplementedException ();\r
45                 }\r
46 \r
47                 [MonoTODO]\r
48                 protected void EndCoreProcessRequest (IAsyncResult result)\r
49                 {\r
50                         throw new NotImplementedException ();\r
51                 }\r
52 \r
53                 [MonoTODO]\r
54                 private void Invoke ()\r
55                 {\r
56                         throw new NotImplementedException ();\r
57                 }\r
58 \r
59                 [MonoTODO]\r
60                 private void WriteReturns (object[] returnValues)\r
61                 {\r
62                         //protocol.WriteReturns (returnValues, outputStream);\r
63                         throw new NotImplementedException ();\r
64                 }\r
65 \r
66                 #endregion // Methods\r
67         }\r
68 }\r