Beispiel #1
0
 /// <remarks/>
 public void FEXGetCMPAsync(ClsFEXAuthRequest Auth, ClsFEXGetCMP Cmp) {
     this.FEXGetCMPAsync(Auth, Cmp, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void FEXGetCMPAsync(ClsFEXAuthRequest Auth, ClsFEXGetCMP Cmp, object userState) {
     if ((this.FEXGetCMPOperationCompleted == null)) {
         this.FEXGetCMPOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFEXGetCMPOperationCompleted);
     }
     this.InvokeAsync("FEXGetCMP", new object[] {
                 Auth,
                 Cmp}, this.FEXGetCMPOperationCompleted, userState);
 }
Beispiel #3
0
 public FEXGetCMPResponse FEXGetCMP(ClsFEXAuthRequest Auth, ClsFEXGetCMP Cmp) {
     object[] results = this.Invoke("FEXGetCMP", new object[] {
                 Auth,
                 Cmp});
     return ((FEXGetCMPResponse)(results[0]));
 }