[System.Web.Script.Services.ScriptService()] [WebService(Description = "", Name = "AIMSWebServiceProxy", Namespace = "http://aims.jocogov.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [Microsoft.VisualBasic.CompilerServices.DesignerGenerated()] public class WebServiceProxy : System.Web.Services.WebService { [WebMethod()] public List ValidateStringAjax(string prefixText) { List resultsList = new List(); org.jocogov.ims.PropertyWebService ws = new org.jocogov.ims.PropertyWebService(); Array strLoginResult = default(Array); strLoginResult = ws.ValidateStringAjax(prefixText, 25, ''); int count = 0; foreach (object i_loopVariable in strLoginResult) { i = i_loopVariable; count += 1; resultsList.Add(new Results { ID = 1, Name = i.Name.ToString, Value = i.Value.ToString, Type = i.Type.ToString }); } return resultsList; } }