SoapProtocolReflector.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 sealed 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 SoapBinding SoapBinding {
  27. get { return soapBinding; }
  28. }
  29. public override string ProtocolName {
  30. get { return "Soap"; }
  31. }
  32. #endregion // Properties
  33. #region Methods
  34. [MonoTODO]
  35. protected override void BeginClass ()
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. protected override void EndClass ()
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. protected override bool ReflectMethod ()
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. protected override string ReflectMethodBinding ()
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. #endregion
  55. }
  56. }