/// <remarks/> public void ExcluiItemAsync(TItem Item, object userState) { if ((this.ExcluiItemOperationCompleted == null)) { this.ExcluiItemOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExcluiItemOperationCompleted); } this.InvokeAsync("ExcluiItem", new object[] { Item}, this.ExcluiItemOperationCompleted, userState); }
/// <remarks/> public void ExcluiItemAsync(TItem Item) { this.ExcluiItemAsync(Item, null); }
/// <remarks/> public void AlteraItemAsync(TItem Item) { this.AlteraItemAsync(Item, null); }
public string ExcluiItem(TItem Item) { object[] results = this.Invoke("ExcluiItem", new object[] { Item}); return ((string)(results[0])); }
/// <remarks/> public void IncluiItemAsync(TItem Item) { this.IncluiItemAsync(Item, null); }