2002-12-6 DennisHayes <dennish@raytek.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / SoapServerMessage.cs
1 // \r
2 // System.Web.Services.Protocols.SoapServerMessage.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.Web.Services;\r
11 \r
12 namespace System.Web.Services.Protocols {\r
13         public sealed class SoapServerMessage : SoapMessage {\r
14 \r
15                 #region Fields\r
16 \r
17                 string action;\r
18                 LogicalMethodInfo methodInfo;\r
19                 bool oneWay;\r
20                 object server;\r
21                 string url;\r
22                 SoapServerProtocol protocol;\r
23 \r
24                 #endregion\r
25 \r
26                 #region Constructors\r
27 \r
28                 [MonoTODO ("Determine what this constructor does.")]\r
29                 internal SoapServerMessage (SoapServerProtocol protocol)\r
30                 {\r
31                 }\r
32 \r
33                 #endregion\r
34 \r
35                 #region Properties\r
36 \r
37                 public override string Action {\r
38                         [MonoTODO]\r
39                         get { throw new NotImplementedException (); }\r
40                 }\r
41 \r
42                 public override LogicalMethodInfo MethodInfo {\r
43                         [MonoTODO]\r
44                         get { throw new NotImplementedException (); }\r
45                 }\r
46 \r
47                 public override bool OneWay {\r
48                         [MonoTODO]\r
49                         get { throw new NotImplementedException (); }\r
50                 }\r
51 \r
52                 public object Server {\r
53                         [MonoTODO]\r
54                         get { throw new NotImplementedException (); }\r
55                 }       \r
56 \r
57                 public override string Url {\r
58                         [MonoTODO]\r
59                         get { throw new NotImplementedException (); }\r
60                 }\r
61 \r
62                 #endregion // Properties\r
63 \r
64                 #region Methods\r
65 \r
66                 [MonoTODO]\r
67                 protected override void EnsureInStage ()\r
68                 {\r
69                         throw new NotImplementedException ();\r
70                 }\r
71 \r
72                 [MonoTODO]\r
73                 protected override void EnsureOutStage ()\r
74                 {\r
75                         throw new NotImplementedException ();\r
76                 }\r
77 \r
78                 #endregion // Methods\r
79         }\r
80 }\r