private object[] OnEndGetDecision(System.IAsyncResult result) { EnterpriseEngineWeb.EnterpriseApi.DecisionType retVal = this.EndGetDecision(result); return(new object[] { retVal }); }
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); }
public void GetDecisionAsync(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision) { this.GetDecisionAsync(decision, null); }
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)); }
public System.IAsyncResult BeginGetDecision(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision, System.AsyncCallback callback, object asyncState) { return(base.Channel.BeginGetDecision(decision, callback, asyncState)); }
public EnterpriseEngineWeb.EnterpriseApi.DecisionType GetDecision(EnterpriseEngineWeb.EnterpriseApi.DecisionType decision) { return(base.Channel.GetDecision(decision)); }