//------------------------------------------------------------------------------ // // 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 ZipCode.ZipToMusicTeachersProxy { using System.Diagnostics; using System.Xml.Serialization; using System; using System.Web.Services.Protocols; using System.Web.Services; [System.Web.Services.WebServiceBindingAttribute(Name="SearchMusicTeachersSoap", Namespace="http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/")] public class SearchMusicTeachers : System.Web.Services.Protocols.SoapHttpClientProtocol { [System.Diagnostics.DebuggerStepThroughAttribute()] public SearchMusicTeachers() { this.Url = "http://www.perfectxml.net/WebServices/MusicTeachers/MusicTeachers.asmx"; } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/FindMusicTeachers2", RequestNamespace="http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/", ResponseNamespace="http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public string FindMusicTeachers2(string ZipCode, string Instrument, string SkillLevel, string Style, int Radius, int RestrictResultsCount) { object[] results = this.Invoke("FindMusicTeachers2", new object[] { ZipCode, Instrument, SkillLevel, Style, Radius, RestrictResultsCount}); return ((string)(results[0])); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.IAsyncResult BeginFindMusicTeachers2(string ZipCode, string Instrument, string SkillLevel, string Style, int Radius, int RestrictResultsCount, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("FindMusicTeachers2", new object[] { ZipCode, Instrument, SkillLevel, Style, Radius, RestrictResultsCount}, callback, asyncState); } [System.Diagnostics.DebuggerStepThroughAttribute()] public string EndFindMusicTeachers2(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string)(results[0])); } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/FindMusicTeachers", RequestNamespace="http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/", ResponseNamespace="http://www.PerfectXML.com/NETWebSvcs/MusicTeachers/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public System.Data.DataSet FindMusicTeachers(string ZipCode, string Instrument, string SkillLevel, string Style, int Radius, int RestrictResultsCount) { object[] results = this.Invoke("FindMusicTeachers", new object[] { ZipCode, Instrument, SkillLevel, Style, Radius, RestrictResultsCount}); return ((System.Data.DataSet)(results[0])); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.IAsyncResult BeginFindMusicTeachers(string ZipCode, string Instrument, string SkillLevel, string Style, int Radius, int RestrictResultsCount, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("FindMusicTeachers", new object[] { ZipCode, Instrument, SkillLevel, Style, Radius, RestrictResultsCount}, callback, asyncState); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.Data.DataSet EndFindMusicTeachers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } } }