| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // System.Web.Services.Protocols.HttpSimpleClientProtocol.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public abstract class HttpSimpleClientProtocol : HttpWebClientProtocol {
- #region Fields
- IAsyncResult result;
- #endregion // Fields
- #region Constructors
- protected HttpSimpleClientProtocol ()
- {
- }
-
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- protected IAsyncResult BeginInvoke (string methodName, string requestUrl, object[] parameters, AsyncCallback callback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected object EndInvoke (IAsyncResult asyncResult)
- {
- if (asyncResult != result)
- throw new ArgumentException ("asyncResult is not the return value from BeginInvoke");
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected object Invoke (string methodName, string requestUrl, object[] parameters)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|