// // System.Web.Services.Protocols.SoapHttpClientProtocol.cs // // Author: // Tim Coleman (tim@timcoleman.com) // // Copyright (C) Tim Coleman, 2002 // using System.Net; using System.Security.Cryptography.X509Certificates; using System.Web.Services; namespace System.Web.Services.Protocols { public class SoapHttpClientProtocol : HttpWebClientProtocol { #region Fields bool allowAutoRedirect; X509CertificateCollection clientCertificates; CookieContainer cookieContainer; IWebProxy proxy; string userAgent; #endregion #region Constructors public SoapHttpClientProtocol () { } #endregion // Constructors #region Methods [MonoTODO] protected IAsyncResult BeginInvoke (string methodName, object[] parameters, AsyncCallback callback, object asyncState) { throw new NotImplementedException (); } [MonoTODO] public void Discover () { throw new NotImplementedException (); } [MonoTODO] protected object[] EndInvoke (IAsyncResult asyncResult) { throw new NotImplementedException (); } [MonoTODO] protected override WebRequest GetWebRequest (Uri uri) { throw new NotImplementedException (); } [MonoTODO] protected object[] Invoke (string methodName, object[] parameters) { throw new NotImplementedException (); } #endregion // Methods } }