/// <remarks/> public System.IAsyncResult BeginGetAssetList(string InputValue, COutputValue OutputValue, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("GetAssetList", new object[] { InputValue, OutputValue }, callback, asyncState)); }
public CAsset[] GetAssetList(string InputValue, ref COutputValue OutputValue) { object[] results = this.Invoke("GetAssetList", new object[] { InputValue, OutputValue }); OutputValue = ((COutputValue)(results[1])); return((CAsset[])(results[0])); }
/// <remarks/> public void GetAssetListAsync(string InputValue, COutputValue OutputValue, object userState) { if ((this.GetAssetListOperationCompleted == null)) { this.GetAssetListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAssetListOperationCompleted); } this.InvokeAsync("GetAssetList", new object[] { InputValue, OutputValue }, this.GetAssetListOperationCompleted, userState); }
/// <remarks/> public void GetAssetListAsync(string InputValue, COutputValue OutputValue) { this.GetAssetListAsync(InputValue, OutputValue, null); }
/// <remarks/> public CAsset[] EndGetAssetList(System.IAsyncResult asyncResult, out COutputValue OutputValue) { object[] results = this.EndInvoke(asyncResult); OutputValue = ((COutputValue)(results[1])); return((CAsset[])(results[0])); }