コード例 #1
0
ファイル: Reference.cs プロジェクト: ikkisou/dragon-fruit
 /// <remarks/>
 public void HtmlPrybeCompletoAsync(Cooperativa[] listaCooperativas, string FechaInicio, string FechaFin) {
     this.HtmlPrybeCompletoAsync(listaCooperativas, FechaInicio, FechaFin, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ikkisou/dragon-fruit
 /// <remarks/>
 public void HtmlPrybeCompletoAsync(Cooperativa[] listaCooperativas, string FechaInicio, string FechaFin, object userState) {
     if ((this.HtmlPrybeCompletoOperationCompleted == null)) {
         this.HtmlPrybeCompletoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnHtmlPrybeCompletoOperationCompleted);
     }
     this.InvokeAsync("HtmlPrybeCompleto", new object[] {
                 listaCooperativas,
                 FechaInicio,
                 FechaFin}, this.HtmlPrybeCompletoOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ikkisou/dragon-fruit
 public string HtmlPrybeCompleto(Cooperativa[] listaCooperativas, string FechaInicio, string FechaFin) {
     object[] results = this.Invoke("HtmlPrybeCompleto", new object[] {
                 listaCooperativas,
                 FechaInicio,
                 FechaFin});
     return ((string)(results[0]));
 }