Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void GetCategoryByIdAsync(Category category) {
     this.GetCategoryByIdAsync(category, null);
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void GetArtistsForCategoryAsync(Category category) {
     this.GetArtistsForCategoryAsync(category, null);
 }
Exemplo n.º 4
0
 public Category GetCategoryById(Category category) {
     object[] results = this.Invoke("GetCategoryById", new object[] {
                 category});
     return ((Category)(results[0]));
 }
Exemplo n.º 5
0
 public Artist[] GetArtistsForCategory(Category category) {
     object[] results = this.Invoke("GetArtistsForCategory", new object[] {
                 category});
     return ((Artist[])(results[0]));
 }