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