Ejemplo n.º 1
0
        private System.IAsyncResult OnBeginItemSearch(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            Mono.Api.AmazonClient.AmazonProxyService.CountryType     countryType = ((Mono.Api.AmazonClient.AmazonProxyService.CountryType)(inValues[0]));
            Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType indexType   = ((Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType)(inValues[1]));
            int itemPage = ((int)(inValues[2]));

            return(((Mono.Api.AmazonClient.AmazonProxyService.IAmazonService)(this)).BeginItemSearch(countryType, indexType, itemPage, callback, asyncState));
        }
Ejemplo n.º 2
0
 public System.IAsyncResult BeginItemSearch(Mono.Api.AmazonClient.AmazonProxyService.CountryType countryType, Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType indexType, int itemPage, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[3];
     _args[0] = countryType;
     _args[1] = indexType;
     _args[2] = itemPage;
     System.IAsyncResult _result = base.BeginInvoke("ItemSearch", _args, callback, asyncState);
     return(_result);
 }
Ejemplo n.º 3
0
 public void ItemSearchAsync(Mono.Api.AmazonClient.AmazonProxyService.CountryType countryType, Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType indexType, int itemPage, object userState)
 {
     if ((this.onBeginItemSearchDelegate == null))
     {
         this.onBeginItemSearchDelegate = new BeginOperationDelegate(this.OnBeginItemSearch);
     }
     if ((this.onEndItemSearchDelegate == null))
     {
         this.onEndItemSearchDelegate = new EndOperationDelegate(this.OnEndItemSearch);
     }
     if ((this.onItemSearchCompletedDelegate == null))
     {
         this.onItemSearchCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnItemSearchCompleted);
     }
     base.InvokeAsync(this.onBeginItemSearchDelegate, new object[] {
         countryType,
         indexType,
         itemPage
     }, this.onEndItemSearchDelegate, this.onItemSearchCompletedDelegate, userState);
 }
Ejemplo n.º 4
0
 public void ItemSearchAsync(Mono.Api.AmazonClient.AmazonProxyService.CountryType countryType, Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType indexType, int itemPage)
 {
     this.ItemSearchAsync(countryType, indexType, itemPage, null);
 }
Ejemplo n.º 5
0
 System.IAsyncResult Mono.Api.AmazonClient.AmazonProxyService.IAmazonService.BeginItemSearch(Mono.Api.AmazonClient.AmazonProxyService.CountryType countryType, Mono.Api.AmazonClient.AmazonProxyService.SearchIndexType indexType, int itemPage, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginItemSearch(countryType, indexType, itemPage, callback, asyncState));
 }