Example #1
0
 /// <remarks/>
 public void InsertUKeyAsync(UKeyEntity entity) {
     this.InsertUKeyAsync(entity, null);
 }
Example #2
0
 /// <remarks/>
 public void InsertUKeyAsync(UKeyEntity entity, object userState) {
     if ((this.InsertUKeyOperationCompleted == null)) {
         this.InsertUKeyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInsertUKeyOperationCompleted);
     }
     this.InvokeAsync("InsertUKey", new object[] {
                 entity}, this.InsertUKeyOperationCompleted, userState);
 }
Example #3
0
 public bool InsertUKey(UKeyEntity entity) {
     object[] results = this.Invoke("InsertUKey", new object[] {
                 entity});
     return ((bool)(results[0]));
 }