2008-07-01 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / ServerProtocol.cs
index 8bc4e1e3f64a7f8b1250172697aed17662e33f82..70c895ab52a54a6cec476614f59166600d1d1493 100644 (file)
@@ -1,11 +1,11 @@
-// \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
+// 
+// ServerProtocol.cs
+//
+// Author:
+//   Atsushi Enomoto  <atsushi@ximian.com>
+//
+// Copyright (C) 2006 Novell, Inc.
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\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
-               HttpContext _context;\r
-\r
-               #region Constructors\r
-\r
-               internal ServerProtocol (HttpContext context)\r
-               {\r
-                       _context = context;\r
-               }\r
-\r
-               protected ServerProtocol ()\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-\r
-               #endregion\r
-\r
-               #region Properties\r
-\r
-               public HttpContext Context {\r
-                       get { return _context; }\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
-               public HttpRequest Request {\r
-                       get { return _context.Request; }\r
-               }\r
-\r
-               public HttpResponse Response {\r
-                       get { return _context.Response; }\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
-\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
+
+#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