コード例 #1
0
 public void RecuperarPropostasAsync(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status status, object userState)
 {
     if ((this.onBeginRecuperarPropostasDelegate == null))
     {
         this.onBeginRecuperarPropostasDelegate = new BeginOperationDelegate(this.OnBeginRecuperarPropostas);
     }
     if ((this.onEndRecuperarPropostasDelegate == null))
     {
         this.onEndRecuperarPropostasDelegate = new EndOperationDelegate(this.OnEndRecuperarPropostas);
     }
     if ((this.onRecuperarPropostasCompletedDelegate == null))
     {
         this.onRecuperarPropostasCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnRecuperarPropostasCompleted);
     }
     base.InvokeAsync(this.onBeginRecuperarPropostasDelegate, new object[] {
         status
     }, this.onEndRecuperarPropostasDelegate, this.onRecuperarPropostasCompletedDelegate, userState);
 }
コード例 #2
0
 public void RecuperarPropostasAsync(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status status)
 {
     this.RecuperarPropostasAsync(status, null);
 }
コード例 #3
0
 public System.IAsyncResult BeginRecuperarPropostas(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status status, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginRecuperarPropostas(status, callback, asyncState));
 }
コード例 #4
0
 private System.IAsyncResult OnBeginRecuperarPropostas(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status status = ((WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status)(inValues[0]));
     return(this.BeginRecuperarPropostas(status, callback, asyncState));
 }
コード例 #5
0
 public WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta[] RecuperarPropostas(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Status status)
 {
     return(base.Channel.RecuperarPropostas(status));
 }