/// <remarks/> public void updateWithOptionsAsync(APIEntity entity, string options, object userState) { if ((this.updateWithOptionsOperationCompleted == null)) { this.updateWithOptionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateWithOptionsOperationCompleted); } this.InvokeAsync("updateWithOptions", new object[] { entity, options}, this.updateWithOptionsOperationCompleted, userState); }
public void updateWithOptions(APIEntity entity, string options) { this.Invoke("updateWithOptions", new object[] { entity, options}); }
/// <remarks/> public void updateWithOptionsAsync(APIEntity entity, string options) { this.updateWithOptionsAsync(entity, options, null); }
/// <remarks/> public void updateAsync(APIEntity entity) { this.updateAsync(entity, null); }
public void update(APIEntity entity) { this.Invoke("update", new object[] { entity}); }
/// <remarks/> public void addEntityAsync(long parentId, APIEntity entity, object userState) { if ((this.addEntityOperationCompleted == null)) { this.addEntityOperationCompleted = new System.Threading.SendOrPostCallback(this.OnaddEntityOperationCompleted); } this.InvokeAsync("addEntity", new object[] { parentId, entity}, this.addEntityOperationCompleted, userState); }
/// <remarks/> public void addEntityAsync(long parentId, APIEntity entity) { this.addEntityAsync(parentId, entity, null); }
public long addEntity(long parentId, APIEntity entity) { object[] results = this.Invoke("addEntity", new object[] { parentId, entity}); return ((long)(results[0])); }