| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- //
- // System.Web.Services.Protocols.ServerProtocol.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.IO;
- using System.Web;
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- [MonoTODO ("Figure out what this class does.")]
- internal abstract class ServerProtocol {
- #region Constructors
- protected ServerProtocol ()
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region Properties
- [MonoTODO]
- public HttpContext Context {
- get { throw new NotImplementedException (); }
- }
- public abstract bool IsOneWay {
- get;
- }
- public abstract LogicalMethodInfo MethodInfo {
- get;
- }
- [MonoTODO]
- public virtual Exception OnewayInitException {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public HttpRequest Request {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public HttpResponse Response {
- get { throw new NotImplementedException (); }
- }
- #endregion
- #region Methods
- [MonoTODO]
- protected void AddToCache (Type t1, Type t2, object o)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void CreateServerInstance ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void DisposeServerInstance ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string GenerateFaultString (Exception exception)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected object GetFromCache (Type t1, Type t2)
- {
- throw new NotImplementedException ();
- }
- public abstract bool Initialize ();
- public abstract object[] ReadParameters ();
- [MonoTODO]
- public virtual bool WriteException (Exception e, Stream outputStream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void WriteOneWayResponse ()
- {
- throw new NotImplementedException ();
- }
- public abstract void WriteReturns (object[] returnValues, Stream outputStream);
- #endregion
- }
- }
|