/// <remarks/>
 public void UpdateMemberProfileAsync(string aLicKey, int iUserMemberID, BCNProfile clsProfile) {
     this.UpdateMemberProfileAsync(aLicKey, iUserMemberID, clsProfile, null);
 }
 /// <remarks/>
 public void UpdateMemberProfileAsync(string aLicKey, int iUserMemberID, BCNProfile clsProfile, object userState) {
     if ((this.UpdateMemberProfileOperationCompleted == null)) {
         this.UpdateMemberProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateMemberProfileOperationCompleted);
     }
     this.InvokeAsync("UpdateMemberProfile", new object[] {
                 aLicKey,
                 iUserMemberID,
                 clsProfile}, this.UpdateMemberProfileOperationCompleted, userState);
 }
 public BCNProfile UpdateMemberProfile(string aLicKey, int iUserMemberID, BCNProfile clsProfile) {
     object[] results = this.Invoke("UpdateMemberProfile", new object[] {
                 aLicKey,
                 iUserMemberID,
                 clsProfile});
     return ((BCNProfile)(results[0]));
 }