2004-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / HttpServerProtocol.cs
1 // \r
2 // System.Web.Services.Protocols.HttpServerProtocol.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.IO;\r
11 using System.Web.Services;\r
12 \r
13 namespace System.Web.Services.Protocols {\r
14         [MonoTODO ("Figure out what this class does.")]\r
15         internal abstract class HttpServerProtocol : ServerProtocol {\r
16 \r
17                 #region Constructors\r
18 \r
19                 [MonoTODO ("Is the bool parameter the one way?")]\r
20                 protected HttpServerProtocol (bool isOneWay)\r
21                 {\r
22                         throw new NotImplementedException ();\r
23                 }\r
24 \r
25                 #endregion // Constructors\r
26 \r
27                 #region Properties\r
28 \r
29                 [MonoTODO]\r
30                 public override bool IsOneWay {\r
31                         get { throw new NotImplementedException (); }\r
32                 }\r
33 \r
34                 [MonoTODO]\r
35                 public override LogicalMethodInfo MethodInfo {\r
36                         get { throw new NotImplementedException (); }\r
37                 }\r
38 \r
39                 #endregion // Properties\r
40 \r
41                 #region Methods\r
42 \r
43                 [MonoTODO]\r
44                 public static bool AreUrlParametersSupported (LogicalMethodInfo methodInfo)\r
45                 {\r
46                         throw new NotImplementedException ();\r
47                 }\r
48 \r
49                 [MonoTODO]\r
50                 public override bool Initialize () \r
51                 {\r
52                         throw new NotImplementedException ();\r
53                 }\r
54 \r
55                 [MonoTODO]\r
56                 public override object[] ReadParameters ()\r
57                 {\r
58                         throw new NotImplementedException ();\r
59                 }\r
60                 \r
61                 [MonoTODO]\r
62                 public override bool WriteException (Exception e, Stream outputStream)\r
63                 {\r
64                         throw new NotImplementedException ();\r
65                 }\r
66 \r
67                 [MonoTODO]\r
68                 public override void WriteReturns (object[] returnValues, Stream outputStream)\r
69                 {\r
70                         //xmlReturnWriter.Write (Response, outputStream, returnValue);\r
71                         throw new NotImplementedException ();\r
72                 }\r
73 \r
74                 #endregion // Methods\r
75         }\r
76 }\r