Пример #1
0
 /// <remarks/>
 public void updateAsync(documentCarrier carrier, string username, string password, object userState) {
     if ((this.updateOperationCompleted == null)) {
         this.updateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateOperationCompleted);
     }
     this.InvokeAsync("update", new object[] {
                 carrier,
                 username,
                 password}, this.updateOperationCompleted, userState);
 }
Пример #2
0
 public void update(documentCarrier carrier, string username, string password) {
     this.Invoke("update", new object[] {
                 carrier,
                 username,
                 password});
 }
Пример #3
0
 /// <remarks/>
 public void updateAsync(documentCarrier carrier, string username, string password) {
     this.updateAsync(carrier, username, password, null);
 }
Пример #4
0
 public int create(documentCarrier carrier, string username, string password) {
     object[] results = this.Invoke("create", new object[] {
                 carrier,
                 username,
                 password});
     return ((int)(results[0]));
 }