Exemplo n.º 1
0
 public void DoInterventionAsync(PhoneAppSmartVigi.ServiceReference.InterventionDto interv, object userState)
 {
     if ((this.onBeginDoInterventionDelegate == null))
     {
         this.onBeginDoInterventionDelegate = new BeginOperationDelegate(this.OnBeginDoIntervention);
     }
     if ((this.onEndDoInterventionDelegate == null))
     {
         this.onEndDoInterventionDelegate = new EndOperationDelegate(this.OnEndDoIntervention);
     }
     if ((this.onDoInterventionCompletedDelegate == null))
     {
         this.onDoInterventionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDoInterventionCompleted);
     }
     base.InvokeAsync(this.onBeginDoInterventionDelegate, new object[] {
         interv
     }, this.onEndDoInterventionDelegate, this.onDoInterventionCompletedDelegate, userState);
 }
Exemplo n.º 2
0
 public void DoInterventionAsync(PhoneAppSmartVigi.ServiceReference.InterventionDto interv)
 {
     this.DoInterventionAsync(interv, null);
 }
Exemplo n.º 3
0
 public System.IAsyncResult BeginDoIntervention(PhoneAppSmartVigi.ServiceReference.InterventionDto interv, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginDoIntervention(interv, callback, asyncState));
 }
Exemplo n.º 4
0
 private System.IAsyncResult OnBeginDoIntervention(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     PhoneAppSmartVigi.ServiceReference.InterventionDto interv = ((PhoneAppSmartVigi.ServiceReference.InterventionDto)(inValues[0]));
     return(this.BeginDoIntervention(interv, callback, asyncState));
 }
Exemplo n.º 5
0
 public void DoIntervention(PhoneAppSmartVigi.ServiceReference.InterventionDto interv)
 {
     base.Channel.DoIntervention(interv);
 }