Example #1
0
 /// <remarks/>
 public void FEAutRequestAsync(FEAuthRequest argAuth, FERequest Fer) {
     this.FEAutRequestAsync(argAuth, Fer, null);
 }
Example #2
0
 /// <remarks/>
 public void FEAutRequestAsync(FEAuthRequest argAuth, FERequest Fer, object userState) {
     if ((this.FEAutRequestOperationCompleted == null)) {
         this.FEAutRequestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFEAutRequestOperationCompleted);
     }
     this.InvokeAsync("FEAutRequest", new object[] {
                 argAuth,
                 Fer}, this.FEAutRequestOperationCompleted, userState);
 }
Example #3
0
 public FEResponse FEAutRequest(FEAuthRequest argAuth, FERequest Fer) {
     object[] results = this.Invoke("FEAutRequest", new object[] {
                 argAuth,
                 Fer});
     return ((FEResponse)(results[0]));
 }