Beispiel #1
0
 /// <remarks/>
 public System.IAsyncResult BeginGetAssetList(string InputValue, COutputValue OutputValue, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("GetAssetList", new object[] {
         InputValue,
         OutputValue
     }, callback, asyncState));
 }
Beispiel #2
0
 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]));
 }
Beispiel #3
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);
 }
Beispiel #4
0
 /// <remarks/>
 public void GetAssetListAsync(string InputValue, COutputValue OutputValue)
 {
     this.GetAssetListAsync(InputValue, OutputValue, null);
 }
Beispiel #5
0
 /// <remarks/>
 public CAsset[] EndGetAssetList(System.IAsyncResult asyncResult, out COutputValue OutputValue)
 {
     object[] results = this.EndInvoke(asyncResult);
     OutputValue = ((COutputValue)(results[1]));
     return((CAsset[])(results[0]));
 }