/* * Created by SharpDevelop. * User: romejs * Date: 10/7/2004 * Time: 12:38 PM * * 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="BlursoftBlogServiceSoap",Namespace="http://tempuri.org/"), System.Diagnostics.DebuggerStepThroughAttribute(), System.ComponentModel.DesignerCategoryAttribute("code")] public class BlursoftBlogService : System.Web.Services.Protocols.SoapHttpClientProtocol { public BlursoftBlogService () { this.Url = "http://127.0.0.1:8080/websvc.asmx"; } [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Post",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 Post(string title, string body) { this.Invoke("Post", new object[] { title, body}); } public virtual System.IAsyncResult BeginPost(string title, string body, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("Post", new object[] { title, body}, callback, asyncState); } public virtual void EndPost(System.IAsyncResult asyncResult) { this.EndInvoke(asyncResult); } }