예제 #1
0
파일: Reference.cs 프로젝트: haozhouxu/IOS
 /// <remarks/>
 public void InsertUKeyAsync(UKeyEntity entity) {
     this.InsertUKeyAsync(entity, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: haozhouxu/IOS
 /// <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);
 }
예제 #3
0
파일: Reference.cs 프로젝트: haozhouxu/IOS
 public bool InsertUKey(UKeyEntity entity) {
     object[] results = this.Invoke("InsertUKey", new object[] {
                 entity});
     return ((bool)(results[0]));
 }