/// <remarks/> public void GetCategoryByIdAsync(Category category, object userState) { if ((this.GetCategoryByIdOperationCompleted == null)) { this.GetCategoryByIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCategoryByIdOperationCompleted); } this.InvokeAsync("GetCategoryById", new object[] { category}, this.GetCategoryByIdOperationCompleted, userState); }
/// <remarks/> public void GetCategoryByIdAsync(Category category) { this.GetCategoryByIdAsync(category, null); }
/// <remarks/> public void GetArtistsForCategoryAsync(Category category) { this.GetArtistsForCategoryAsync(category, null); }
public Category GetCategoryById(Category category) { object[] results = this.Invoke("GetCategoryById", new object[] { category}); return ((Category)(results[0])); }
public Artist[] GetArtistsForCategory(Category category) { object[] results = this.Invoke("GetArtistsForCategory", new object[] { category}); return ((Artist[])(results[0])); }