Ejemplo n.º 1
0
 /// <remarks/>
 public void UpdateMultipleAsync(GLSetup[] GLSetup_List, object userState) {
     if ((this.UpdateMultipleOperationCompleted == null)) {
         this.UpdateMultipleOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateMultipleOperationCompleted);
     }
     this.InvokeAsync("UpdateMultiple", new object[] {
                 GLSetup_List}, this.UpdateMultipleOperationCompleted, userState);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void UpdateAsync(GLSetup GLSetup) {
     this.UpdateAsync(GLSetup, null);
 }
Ejemplo n.º 3
0
 /// <remarks/>
 public void UpdateMultipleAsync(GLSetup[] GLSetup_List) {
     this.UpdateMultipleAsync(GLSetup_List, null);
 }
Ejemplo n.º 4
0
 public void Update(ref GLSetup GLSetup) {
     object[] results = this.Invoke("Update", new object[] {
                 GLSetup});
     GLSetup = ((GLSetup)(results[0]));
 }