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