Example #1
0
 /// <remarks/>
 public void HtmlCooperativaAsync(Plaza[] listaPlazas, string NombreCooperativa, string FechaInicio, string FechaFin) {
     this.HtmlCooperativaAsync(listaPlazas, NombreCooperativa, FechaInicio, FechaFin, null);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 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]));
 }