Beispiel #1
0
 public void update(documentCarrier carrier, string username, string password)
 {
     this.Invoke("update", new object[] {
         carrier,
         username,
         password
     });
 }
Beispiel #2
0
 public int create(documentCarrier carrier, string username, string password)
 {
     object[] results = this.Invoke("create", new object[] {
         carrier,
         username,
         password
     });
     return((int)(results[0]));
 }
Beispiel #3
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);
 }
Beispiel #4
0
 /// <remarks/>
 public void updateAsync(documentCarrier carrier, string username, string password)
 {
     this.updateAsync(carrier, username, password, null);
 }