public bool DoInference(InputData InputDataValue, ref string strResult) { object[] results = this.Invoke("DoInference", new object[] { InputDataValue, strResult}); strResult = ((string)(results[1])); return ((bool)(results[0])); }
/// <remarks/> public void DoInferenceAsync(InputData InputDataValue, string strResult, object userState) { if ((this.DoInferenceOperationCompleted == null)) { this.DoInferenceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDoInferenceOperationCompleted); } this.InvokeAsync("DoInference", new object[] { InputDataValue, strResult}, this.DoInferenceOperationCompleted, userState); }
/// <remarks/> public void DoInferenceAsync(InputData InputDataValue, string strResult) { this.DoInferenceAsync(InputDataValue, strResult, null); }