SoapHttpClientProtocol.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Web.Services.Protocols.SoapHttpClientProtocol.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Net;
  10. using System.Web;
  11. using System.Web.Services;
  12. namespace System.Web.Services.Protocols {
  13. public class SoapHttpClientProtocol : HttpWebClientProtocol {
  14. #region Constructors
  15. public SoapHttpClientProtocol ()
  16. {
  17. }
  18. #endregion // Constructors
  19. #region Methods
  20. [MonoTODO]
  21. protected IAsyncResult BeginInvoke (string methodName, object[] parameters, AsyncCallback callback, object asyncState)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public void Discover ()
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. protected object[] EndInvoke (IAsyncResult asyncResult)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. protected override WebRequest GetWebRequest (Uri uri)
  36. {
  37. return WebRequest.Create (uri);
  38. }
  39. [MonoTODO]
  40. protected object[] Invoke (string methodName, object[] parameters)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. #endregion // Methods
  45. }
  46. }