SoapProtocolReflector.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // System.Web.Services.Description.SoapProtocolReflector.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. using System.Web.Services.Protocols;
  11. using System.Xml.Serialization;
  12. namespace System.Web.Services.Description {
  13. [MonoTODO ("This class is based on conjecture and guesswork.")]
  14. internal class SoapProtocolReflector : ProtocolReflector {
  15. #region Fields
  16. SoapBinding soapBinding;
  17. #endregion // Fields
  18. #region Constructors
  19. [MonoTODO]
  20. public SoapProtocolReflector ()
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. #endregion // Constructors
  25. #region Properties
  26. public override string ProtocolName {
  27. get { return "Soap"; }
  28. }
  29. #endregion // Properties
  30. #region Methods
  31. [MonoTODO]
  32. protected override void BeginClass ()
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. protected override void EndClass ()
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. protected override bool ReflectMethod ()
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. protected override string ReflectMethodBinding ()
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. #endregion
  52. }
  53. }