2008-07-01 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / ServerProtocol.cs
index 5c778125aff5b7ab5f635b91ff2466a7ba7f94d3..70c895ab52a54a6cec476614f59166600d1d1493 100644 (file)
-// \r
-// System.Web.Services.Protocols.ServerProtocol.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
-\r
-using System.IO;\r
-using System.Web;\r
-using System.Web.Services;\r
-\r
-namespace System.Web.Services.Protocols {\r
-       [MonoTODO ("Figure out what this class does.")]\r
-       internal abstract class ServerProtocol {\r
-\r
-               #region Constructors\r
-\r
-               protected ServerProtocol ()\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               #endregion\r
-\r
-               #region Properties\r
-\r
-               [MonoTODO]\r
-               public HttpContext Context {\r
-                       get { throw new NotImplementedException (); }\r
-               }\r
-\r
-               public abstract bool IsOneWay {\r
-                       get;\r
-               }\r
-\r
-               public abstract LogicalMethodInfo MethodInfo {\r
-                       get;\r
-               }\r
-\r
-               [MonoTODO]\r
-               public virtual Exception OnewayInitException {\r
-                       get { throw new NotImplementedException (); }\r
-               }\r
-\r
-               [MonoTODO]\r
-               public HttpRequest Request {\r
-                       get { throw new NotImplementedException (); }\r
-               }\r
-\r
-               [MonoTODO]\r
-               public HttpResponse Response {\r
-                       get { throw new NotImplementedException (); }\r
-               }\r
-\r
-               #endregion\r
-\r
-               #region Methods\r
-\r
-               [MonoTODO]\r
-               protected void AddToCache (Type t1, Type t2, object o)\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               [MonoTODO]\r
-               public virtual void CreateServerInstance ()\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               [MonoTODO]\r
-               public virtual void DisposeServerInstance ()\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               [MonoTODO]\r
-               public string GenerateFaultString (Exception exception)\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               [MonoTODO]\r
-               protected object GetFromCache (Type t1, Type t2)\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               public abstract bool Initialize ();\r
-                public abstract object[] ReadParameters ();\r
-\r
-               [MonoTODO]\r
-               public virtual bool WriteException (Exception e, Stream outputStream)\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               [MonoTODO]\r
-               public void WriteOneWayResponse ()\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               public abstract void WriteReturns (object[] returnValues, Stream outputStream);\r
-\r
-               #endregion\r
-       }\r
-}\r
+// 
+// ServerProtocol.cs
+//
+// Author:
+//   Atsushi Enomoto  <atsushi@ximian.com>
+//
+// Copyright (C) 2006 Novell, Inc.
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+namespace System.Web.Services.Protocols
+{
+       public abstract class ServerProtocol
+       {
+               protected ServerProtocol ()
+               {
+               }
+
+               [MonoTODO]
+               protected HttpContext Context {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               protected HttpRequest Request {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               protected HttpResponse Response {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               protected virtual object Target {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               protected void AddToCache (Type protocolType, Type serverType, object value)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               protected object GetFromCache (Type protocolType, Type serverType)
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
+
+#endif