public void GetCategoryInformationAsync(CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest request, object userState)
 {
     if ((this.onBeginGetCategoryInformationDelegate == null))
     {
         this.onBeginGetCategoryInformationDelegate = new BeginOperationDelegate(this.OnBeginGetCategoryInformation);
     }
     if ((this.onEndGetCategoryInformationDelegate == null))
     {
         this.onEndGetCategoryInformationDelegate = new EndOperationDelegate(this.OnEndGetCategoryInformation);
     }
     if ((this.onGetCategoryInformationCompletedDelegate == null))
     {
         this.onGetCategoryInformationCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCategoryInformationCompleted);
     }
     base.InvokeAsync(this.onBeginGetCategoryInformationDelegate, new object[] {
         request
     }, this.onEndGetCategoryInformationDelegate, this.onGetCategoryInformationCompletedDelegate, userState);
 }
 public void GetCategoryInformationAsync(CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest request)
 {
     this.GetCategoryInformationAsync(request, null);
 }
 public System.IAsyncResult BeginGetCategoryInformation(CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetCategoryInformation(request, callback, asyncState));
 }
 private System.IAsyncResult OnBeginGetCategoryInformation(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest request = ((CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest)(inValues[0]));
     return(this.BeginGetCategoryInformation(request, callback, asyncState));
 }
 public CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationResponse GetCategoryInformation(CategoryInformationClients.ServiceReferenceClientAsync.CategoryInformationServiceReference.CategoryInformationRequest request)
 {
     return(base.Channel.GetCategoryInformation(request));
 }