2
0

HttpServerProtocol.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //
  2. // System.Web.Services.Protocols.HttpServerProtocol.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.IO;
  10. using System.Web.Services;
  11. namespace System.Web.Services.Protocols {
  12. [MonoTODO ("Figure out what this class does.")]
  13. internal abstract class HttpServerProtocol : ServerProtocol {
  14. #region Constructors
  15. [MonoTODO ("Is the bool parameter the one way?")]
  16. protected HttpServerProtocol (bool isOneWay)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. #endregion // Constructors
  21. #region Properties
  22. [MonoTODO]
  23. public override bool IsOneWay {
  24. get { throw new NotImplementedException (); }
  25. }
  26. [MonoTODO]
  27. public override LogicalMethodInfo MethodInfo {
  28. get { throw new NotImplementedException (); }
  29. }
  30. #endregion // Properties
  31. #region Methods
  32. [MonoTODO]
  33. public static bool AreUrlParametersSupported (LogicalMethodInfo methodInfo)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public override bool Initialize ()
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. public override object[] ReadParameters ()
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public override bool WriteException (Exception e, Stream outputStream)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. public override void WriteReturns (object[] returnValues, Stream outputStream)
  54. {
  55. //xmlReturnWriter.Write (Response, outputStream, returnValue);
  56. throw new NotImplementedException ();
  57. }
  58. #endregion // Methods
  59. }
  60. }