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

📄 reference.cs

📁 毕业设计参考代码网上书店设计系统及其实现
💻 CS
📖 第 1 页 / 共 2 页
字号:
        /// <remarks/>
        public string EndGetOrderDate(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((string)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/GetOrderTotalCost", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public string GetOrderTotalCost(int orderID) {
            object[] results = this.Invoke("GetOrderTotalCost", new object[] {
                        orderID});
            return ((string)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginGetOrderTotalCost(int orderID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("GetOrderTotalCost", new object[] {
                        orderID}, callback, asyncState);
        }
        
        /// <remarks/>
        public string EndGetOrderTotalCost(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((string)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/SearchBookByBookName", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet SearchBookByBookName(string searchString) {
            object[] results = this.Invoke("SearchBookByBookName", new object[] {
                        searchString});
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginSearchBookByBookName(string searchString, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("SearchBookByBookName", new object[] {
                        searchString}, callback, asyncState);
        }
        
        /// <remarks/>
        public System.Data.DataSet EndSearchBookByBookName(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/SearchBookByAuthorName", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet SearchBookByAuthorName(string searchString) {
            object[] results = this.Invoke("SearchBookByAuthorName", new object[] {
                        searchString});
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginSearchBookByAuthorName(string searchString, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("SearchBookByAuthorName", new object[] {
                        searchString}, callback, asyncState);
        }
        
        /// <remarks/>
        public System.Data.DataSet EndSearchBookByAuthorName(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/DisplayShoppingCart", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet DisplayShoppingCart(string UserCartID) {
            object[] results = this.Invoke("DisplayShoppingCart", new object[] {
                        UserCartID});
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginDisplayShoppingCart(string UserCartID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("DisplayShoppingCart", new object[] {
                        UserCartID}, callback, asyncState);
        }
        
        /// <remarks/>
        public System.Data.DataSet EndDisplayShoppingCart(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/PlaceOrder", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public int PlaceOrder(string UserID) {
            object[] results = this.Invoke("PlaceOrder", new object[] {
                        UserID});
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginPlaceOrder(string UserID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("PlaceOrder", new object[] {
                        UserID}, callback, asyncState);
        }
        
        /// <remarks/>
        public int EndPlaceOrder(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/CountShoppingCartItem", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public int CountShoppingCartItem(string UserCartID) {
            object[] results = this.Invoke("CountShoppingCartItem", new object[] {
                        UserCartID});
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginCountShoppingCartItem(string UserCartID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("CountShoppingCartItem", new object[] {
                        UserCartID}, callback, asyncState);
        }
        
        /// <remarks/>
        public int EndCountShoppingCartItem(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/ShoppingCartTotalCost", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Decimal ShoppingCartTotalCost(string UserCartID) {
            object[] results = this.Invoke("ShoppingCartTotalCost", new object[] {
                        UserCartID});
            return ((System.Decimal)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginShoppingCartTotalCost(string UserCartID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("ShoppingCartTotalCost", new object[] {
                        UserCartID}, callback, asyncState);
        }
        
        /// <remarks/>
        public System.Decimal EndShoppingCartTotalCost(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Decimal)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/AddItemtoShoppingCart", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public int AddItemtoShoppingCart(string UserCartID, int BookID, int quantity) {
            object[] results = this.Invoke("AddItemtoShoppingCart", new object[] {
                        UserCartID,
                        BookID,
                        quantity});
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginAddItemtoShoppingCart(string UserCartID, int BookID, int quantity, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("AddItemtoShoppingCart", new object[] {
                        UserCartID,
                        BookID,
                        quantity}, callback, asyncState);
        }
        
        /// <remarks/>
        public int EndAddItemtoShoppingCart(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((int)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/ShoppingCartUpdate", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool ShoppingCartUpdate(string UserCartID, int BookID, int quantity) {
            object[] results = this.Invoke("ShoppingCartUpdate", new object[] {
                        UserCartID,
                        BookID,
                        quantity});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginShoppingCartUpdate(string UserCartID, int BookID, int quantity, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("ShoppingCartUpdate", new object[] {
                        UserCartID,
                        BookID,
                        quantity}, callback, asyncState);
        }
        
        /// <remarks/>
        public bool EndShoppingCartUpdate(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/ShoppingCartRemoveItem", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool ShoppingCartRemoveItem(string UserCartID, int BookID) {
            object[] results = this.Invoke("ShoppingCartRemoveItem", new object[] {
                        UserCartID,
                        BookID});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginShoppingCartRemoveItem(string UserCartID, int BookID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("ShoppingCartRemoveItem", new object[] {
                        UserCartID,
                        BookID}, callback, asyncState);
        }
        
        /// <remarks/>
        public bool EndShoppingCartRemoveItem(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/ShoppingCartEmpty", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool ShoppingCartEmpty(string UserCartID) {
            object[] results = this.Invoke("ShoppingCartEmpty", new object[] {
                        UserCartID});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginShoppingCartEmpty(string UserCartID, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("ShoppingCartEmpty", new object[] {
                        UserCartID}, callback, asyncState);
        }
        
        /// <remarks/>
        public bool EndShoppingCartEmpty(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://examples.com/webservices/ViewNewBooks", RequestNamespace="http://examples.com/webservices/", ResponseNamespace="http://examples.com/webservices/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet ViewNewBooks() {
            object[] results = this.Invoke("ViewNewBooks", new object[0]);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginViewNewBooks(System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("ViewNewBooks", new object[0], callback, asyncState);
        }
        
        /// <remarks/>
        public System.Data.DataSet EndViewNewBooks(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Data.DataSet)(results[0]));
        }
    }
}

⌨️ 快捷键说明

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