MimeParameterWriter.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // System.Web.Services.Protocols.MimeParameterWriter.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.IO;
  10. using System.Net;
  11. using System.Text;
  12. using System.Web.Services;
  13. namespace System.Web.Services.Protocols {
  14. public abstract class MimeParameterWriter : MimeFormatter {
  15. #region Constructors
  16. [MonoTODO]
  17. protected MimeParameterWriter ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. #endregion // Constructors
  22. #region Properties
  23. public virtual Encoding RequestEncoding {
  24. [MonoTODO]
  25. get { throw new NotImplementedException (); }
  26. [MonoTODO]
  27. set { throw new NotImplementedException (); }
  28. }
  29. public virtual bool UsesWriteRequest {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. #endregion // Properties
  34. #region Methods
  35. [MonoTODO]
  36. public virtual string GetRequestUrl (string url, object[] parameters)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public virtual void InitializeRequest (WebRequest request, object[] values)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public virtual void WriteRequest (Stream requestStream, object[] values)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. #endregion // Methods
  51. }
  52. }