/* * Created by SharpDevelop. * User: romejs * Date: 10/7/2004 * Time: 8:58 AM * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ // ------------------------------------------------------------------------------ // // This code was generated by a tool. // Mono Runtime Version: 1.1.4322.573 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ /// [System.Web.Services.WebServiceBinding(Name="StringServiceSoap",Namespace="http://tempuri.org/"), System.Diagnostics.DebuggerStepThroughAttribute(), System.ComponentModel.DesignerCategoryAttribute("code")] public class StringService : System.Web.Services.Protocols.SoapHttpClientProtocol { public StringService () { this.Url = "http://127.0.0.1:8080/imp/websvc.asmx"; } [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Concat",RequestNamespace="http://tempuri.org/",ResponseNamespace="http://tempuri.org/",ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped,Use=System.Web.Services.Description.SoapBindingUse.Literal)] public virtual string Concat(string front, string tail) { System.Object[] results = this.Invoke("Concat", new object[] { front, tail}); return ((string)(results[0])); } public virtual System.IAsyncResult BeginConcat(string front, string tail, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("Concat", new object[] { front, tail}, callback, asyncState); } public virtual string EndConcat(System.IAsyncResult asyncResult) { System.Object[] results = this.EndInvoke(asyncResult); return ((string)(results[0])); } [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Write",RequestNamespace="http://tempuri.org/",ResponseNamespace="http://tempuri.org/",ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped,Use=System.Web.Services.Description.SoapBindingUse.Literal)] public virtual void Write(string text) { this.Invoke("Write", new object[] { text}); } public virtual System.IAsyncResult BeginWrite(string text, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("Write", new object[] { text}, callback, asyncState); } public virtual void EndWrite(System.IAsyncResult asyncResult) { this.EndInvoke(asyncResult); } }