Esempio n. 1
0
 private object[] OnEndGetDecision(System.IAsyncResult result)
 {
     EnterpriseEngineWeb.EnterpriseApi.DecisionType retVal = this.EndGetDecision(result);
     return(new object[] {
         retVal
     });
 }
Esempio n. 2
0
 public void GetDecisionAsync(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision, object userState)
 {
     if ((this.onBeginGetDecisionDelegate == null))
     {
         this.onBeginGetDecisionDelegate = new BeginOperationDelegate(this.OnBeginGetDecision);
     }
     if ((this.onEndGetDecisionDelegate == null))
     {
         this.onEndGetDecisionDelegate = new EndOperationDelegate(this.OnEndGetDecision);
     }
     if ((this.onGetDecisionCompletedDelegate == null))
     {
         this.onGetDecisionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDecisionCompleted);
     }
     base.InvokeAsync(this.onBeginGetDecisionDelegate, new object[] {
         decision
     }, this.onEndGetDecisionDelegate, this.onGetDecisionCompletedDelegate, userState);
 }
Esempio n. 3
0
 public void GetDecisionAsync(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision)
 {
     this.GetDecisionAsync(decision, null);
 }
Esempio n. 4
0
 private System.IAsyncResult OnBeginGetDecision(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     EnterpriseEngineWeb.EnterpriseApi.DecisionType decision = ((EnterpriseEngineWeb.EnterpriseApi.DecisionType)(inValues[0]));
     return(this.BeginGetDecision(decision, callback, asyncState));
 }
Esempio n. 5
0
 public System.IAsyncResult BeginGetDecision(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetDecision(decision, callback, asyncState));
 }
Esempio n. 6
0
 public EnterpriseEngineWeb.EnterpriseApi.DecisionType GetDecision(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision)
 {
     return(base.Channel.GetDecision(decision));
 }