⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 awsecommerceservice.cs

📁 .NET 2.0模式开发实战源代码,使用C#说明
💻 CS
📖 第 1 页 / 共 5 页
字号:
    public CartAddResponse EndCartAdd(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((CartAddResponse)(results[0]));
    }
    
    /// <remarks/>
    public void CartAddAsync(CartAdd CartAdd1) {
        this.CartAddAsync(CartAdd1, null);
    }
    
    /// <remarks/>
    public void CartAddAsync(CartAdd CartAdd1, object userState) {
        if ((this.CartAddOperationCompleted == null)) {
            this.CartAddOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCartAddOperationCompleted);
        }
        this.InvokeAsync("CartAdd", new object[] {
                    CartAdd1}, this.CartAddOperationCompleted, userState);
    }
    
    private void OnCartAddOperationCompleted(object arg) {
        if ((this.CartAddCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.CartAddCompleted(this, new CartAddCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("CartCreateResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public CartCreateResponse CartCreate([System.Xml.Serialization.XmlElementAttribute("CartCreate", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] CartCreate CartCreate1) {
        object[] results = this.Invoke("CartCreate", new object[] {
                    CartCreate1});
        return ((CartCreateResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginCartCreate(CartCreate CartCreate1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("CartCreate", new object[] {
                    CartCreate1}, callback, asyncState);
    }
    
    /// <remarks/>
    public CartCreateResponse EndCartCreate(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((CartCreateResponse)(results[0]));
    }
    
    /// <remarks/>
    public void CartCreateAsync(CartCreate CartCreate1) {
        this.CartCreateAsync(CartCreate1, null);
    }
    
    /// <remarks/>
    public void CartCreateAsync(CartCreate CartCreate1, object userState) {
        if ((this.CartCreateOperationCompleted == null)) {
            this.CartCreateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCartCreateOperationCompleted);
        }
        this.InvokeAsync("CartCreate", new object[] {
                    CartCreate1}, this.CartCreateOperationCompleted, userState);
    }
    
    private void OnCartCreateOperationCompleted(object arg) {
        if ((this.CartCreateCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.CartCreateCompleted(this, new CartCreateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("CartModifyResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public CartModifyResponse CartModify([System.Xml.Serialization.XmlElementAttribute("CartModify", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] CartModify CartModify1) {
        object[] results = this.Invoke("CartModify", new object[] {
                    CartModify1});
        return ((CartModifyResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginCartModify(CartModify CartModify1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("CartModify", new object[] {
                    CartModify1}, callback, asyncState);
    }
    
    /// <remarks/>
    public CartModifyResponse EndCartModify(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((CartModifyResponse)(results[0]));
    }
    
    /// <remarks/>
    public void CartModifyAsync(CartModify CartModify1) {
        this.CartModifyAsync(CartModify1, null);
    }
    
    /// <remarks/>
    public void CartModifyAsync(CartModify CartModify1, object userState) {
        if ((this.CartModifyOperationCompleted == null)) {
            this.CartModifyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCartModifyOperationCompleted);
        }
        this.InvokeAsync("CartModify", new object[] {
                    CartModify1}, this.CartModifyOperationCompleted, userState);
    }
    
    private void OnCartModifyOperationCompleted(object arg) {
        if ((this.CartModifyCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.CartModifyCompleted(this, new CartModifyCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("CartClearResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public CartClearResponse CartClear([System.Xml.Serialization.XmlElementAttribute("CartClear", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] CartClear CartClear1) {
        object[] results = this.Invoke("CartClear", new object[] {
                    CartClear1});
        return ((CartClearResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginCartClear(CartClear CartClear1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("CartClear", new object[] {
                    CartClear1}, callback, asyncState);
    }
    
    /// <remarks/>
    public CartClearResponse EndCartClear(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((CartClearResponse)(results[0]));
    }
    
    /// <remarks/>
    public void CartClearAsync(CartClear CartClear1) {
        this.CartClearAsync(CartClear1, null);
    }
    
    /// <remarks/>
    public void CartClearAsync(CartClear CartClear1, object userState) {
        if ((this.CartClearOperationCompleted == null)) {
            this.CartClearOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCartClearOperationCompleted);
        }
        this.InvokeAsync("CartClear", new object[] {
                    CartClear1}, this.CartClearOperationCompleted, userState);
    }
    
    private void OnCartClearOperationCompleted(object arg) {
        if ((this.CartClearCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.CartClearCompleted(this, new CartClearCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("TransactionLookupResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public TransactionLookupResponse TransactionLookup([System.Xml.Serialization.XmlElementAttribute("TransactionLookup", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] TransactionLookup TransactionLookup1) {
        object[] results = this.Invoke("TransactionLookup", new object[] {
                    TransactionLookup1});
        return ((TransactionLookupResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginTransactionLookup(TransactionLookup TransactionLookup1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("TransactionLookup", new object[] {
                    TransactionLookup1}, callback, asyncState);
    }
    
    /// <remarks/>
    public TransactionLookupResponse EndTransactionLookup(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((TransactionLookupResponse)(results[0]));
    }
    
    /// <remarks/>
    public void TransactionLookupAsync(TransactionLookup TransactionLookup1) {
        this.TransactionLookupAsync(TransactionLookup1, null);
    }
    
    /// <remarks/>
    public void TransactionLookupAsync(TransactionLookup TransactionLookup1, object userState) {
        if ((this.TransactionLookupOperationCompleted == null)) {
            this.TransactionLookupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnTransactionLookupOperationCompleted);
        }
        this.InvokeAsync("TransactionLookup", new object[] {
                    TransactionLookup1}, this.TransactionLookupOperationCompleted, userState);
    }
    
    private void OnTransactionLookupOperationCompleted(object arg) {
        if ((this.TransactionLookupCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.TransactionLookupCompleted(this, new TransactionLookupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("SellerListingSearchResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public SellerListingSearchResponse SellerListingSearch([System.Xml.Serialization.XmlElementAttribute("SellerListingSearch", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] SellerListingSearch SellerListingSearch1) {
        object[] results = this.Invoke("SellerListingSearch", new object[] {
                    SellerListingSearch1});
        return ((SellerListingSearchResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginSellerListingSearch(SellerListingSearch SellerListingSearch1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("SellerListingSearch", new object[] {
                    SellerListingSearch1}, callback, asyncState);
    }
    
    /// <remarks/>
    public SellerListingSearchResponse EndSellerListingSearch(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((SellerListingSearchResponse)(results[0]));
    }
    
    /// <remarks/>
    public void SellerListingSearchAsync(SellerListingSearch SellerListingSearch1) {
        this.SellerListingSearchAsync(SellerListingSearch1, null);
    }
    
    /// <remarks/>
    public void SellerListingSearchAsync(SellerListingSearch SellerListingSearch1, object userState) {
        if ((this.SellerListingSearchOperationCompleted == null)) {
            this.SellerListingSearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSellerListingSearchOperationCompleted);
        }
        this.InvokeAsync("SellerListingSearch", new object[] {
                    SellerListingSearch1}, this.SellerListingSearchOperationCompleted, userState);
    }
    
    private void OnSellerListingSearchOperationCompleted(object arg) {
        if ((this.SellerListingSearchCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.SellerListingSearchCompleted(this, new SellerListingSearchCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("SellerListingLookupResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public SellerListingLookupResponse SellerListingLookup([System.Xml.Serialization.XmlElementAttribute("SellerListingLookup", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] SellerListingLookup SellerListingLookup1) {
        object[] results = this.Invoke("SellerListingLookup", new object[] {
                    SellerListingLookup1});
        return ((SellerListingLookupResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginSellerListingLookup(SellerListingLookup SellerListingLookup1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("SellerListingLookup", new object[] {
                    SellerListingLookup1}, callback, asyncState);
    }
    
    /// <remarks/>
    public SellerListingLookupResponse EndSellerListingLookup(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((SellerListingLookupResponse)(results[0]));
    }
    
    /// <remarks/>
    public void SellerListingLookupAsync(SellerListingLookup SellerListingLookup1) {
        this.SellerListingLookupAsync(SellerListingLookup1, null);
    }
    
    /// <remarks/>
    public void SellerListingLookupAsync(SellerListingLookup SellerListingLookup1, object userState) {
        if ((this.SellerListingLookupOperationCompleted == null)) {
            this.SellerListingLookupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSellerListingLookupOperationCompleted);
        }
        this.InvokeAsync("SellerListingLookup", new object[] {
                    SellerListingLookup1}, this.SellerListingLookupOperationCompleted, userState);
    }
    
    private void OnSellerListingLookupOperationCompleted(object arg) {
        if ((this.SellerListingLookupCompleted != null)) {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.SellerListingLookupCompleted(this, new SellerListingLookupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soap.amazon.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("MultiOperationResponse", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")]
    public MultiOperationResponse MultiOperation([System.Xml.Serialization.XmlElementAttribute("MultiOperation", Namespace="http://webservices.amazon.com/AWSECommerceService/2005-02-23")] MultiOperation MultiOperation1) {
        object[] results = this.Invoke("MultiOperation", new object[] {
                    MultiOperation1});
        return ((MultiOperationResponse)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginMultiOperation(MultiOperation MultiOperation1, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("MultiOperation", new object[] {
                    MultiOperation1}, callback, asyncState);
    }
    
    /// <remarks/>
    public MultiOperationResponse EndMultiOperation(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((MultiOperationResponse)(results[0]));
    }
    
    /// <remarks/>
    public void MultiOperationAsync(MultiOperation MultiOperation1) {
        this.MultiOperationAsync(MultiOperation1, null);
    }
    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -