//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version: 1.0.2914.16 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace WebClientConvert.WebServerConvertProxy { using System.Diagnostics; using System.Xml.Serialization; using System; using System.Web.Services.Protocols; using System.Web.Services; [System.Web.Services.WebServiceBindingAttribute(Name="MyServiceSoap", Namespace="http;//www.dur.ac.uk/barry.cornelius/webservices/")] public class MyService : System.Web.Services.Protocols.SoapHttpClientProtocol { [System.Diagnostics.DebuggerStepThroughAttribute()] public MyService() { this.Url = "http://localhost/barry.cornelius/moving/WebServerConvert/MyService.asmx"; } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http;//www.dur.ac.uk/barry.cornelius/webservices/ToFahrenheit", RequestNamespace="http;//www.dur.ac.uk/barry.cornelius/webservices/", ResponseNamespace="http;//www.dur.ac.uk/barry.cornelius/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public System.Double ToFahrenheit(System.Double pCentigrade) { object[] results = this.Invoke("ToFahrenheit", new object[] { pCentigrade}); return ((System.Double)(results[0])); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.IAsyncResult BeginToFahrenheit(System.Double pCentigrade, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("ToFahrenheit", new object[] { pCentigrade}, callback, asyncState); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.Double EndToFahrenheit(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Double)(results[0])); } } }