/// <remarks/> public void HtmlCooperativaAsync(Plaza[] listaPlazas, string NombreCooperativa, string FechaInicio, string FechaFin) { this.HtmlCooperativaAsync(listaPlazas, NombreCooperativa, FechaInicio, FechaFin, null); }
/// <remarks/> public void HtmlCooperativaAsync(Plaza[] listaPlazas, string NombreCooperativa, string FechaInicio, string FechaFin, object userState) { if ((this.HtmlCooperativaOperationCompleted == null)) { this.HtmlCooperativaOperationCompleted = new System.Threading.SendOrPostCallback(this.OnHtmlCooperativaOperationCompleted); } this.InvokeAsync("HtmlCooperativa", new object[] { listaPlazas, NombreCooperativa, FechaInicio, FechaFin}, this.HtmlCooperativaOperationCompleted, userState); }
public string HtmlCooperativa(Plaza[] listaPlazas, string NombreCooperativa, string FechaInicio, string FechaFin) { object[] results = this.Invoke("HtmlCooperativa", new object[] { listaPlazas, NombreCooperativa, FechaInicio, FechaFin}); return ((string)(results[0])); }