HttpSimpleClientProtocol.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Web.Services.Protocols.HttpSimpleClientProtocol.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. namespace System.Web.Services.Protocols {
  11. public abstract class HttpSimpleClientProtocol : HttpWebClientProtocol {
  12. #region Fields
  13. IAsyncResult result;
  14. #endregion // Fields
  15. #region Constructors
  16. protected HttpSimpleClientProtocol ()
  17. {
  18. }
  19. #endregion // Constructors
  20. #region Methods
  21. [MonoTODO]
  22. protected IAsyncResult BeginInvoke (string methodName, string requestUrl, object[] parameters, AsyncCallback callback, object asyncState)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. protected object EndInvoke (IAsyncResult asyncResult)
  28. {
  29. if (asyncResult != result)
  30. throw new ArgumentException ("asyncResult is not the return value from BeginInvoke");
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. protected object Invoke (string methodName, string requestUrl, object[] parameters)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. #endregion // Methods
  39. }
  40. }