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

📄 reference.cs

📁 我要加入
💻 CS
字号:
//------------------------------------------------------------------------------
// <autogenerated>
//     This code was generated by a tool.
//     Runtime Version: 1.1.4322.573
//
//     Changes to this file may cause incorrect behavior and will be lost if 
//     the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------

// 
// 此源代码是由 Microsoft.VSDesigner 1.1.4322.573 版自动生成。
// 
namespace student.localhost {
    using System.Diagnostics;
    using System.Xml.Serialization;
    using System;
    using System.Web.Services.Protocols;
    using System.ComponentModel;
    using System.Web.Services;
    
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Web.Services.WebServiceBindingAttribute(Name="Service1Soap", Namespace="http://tempuri.org/")]
    public class Service1 : System.Web.Services.Protocols.SoapHttpClientProtocol {
        
        /// <remarks/>
        public Service1() {
            this.Url = "http://localhost/stuservice/Service1.asmx";
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/regedit", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool regedit(string name, string mima) {
            object[] results = this.Invoke("regedit", new object[] {
                        name,
                        mima});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult Beginregedit(string name, string mima, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("regedit", new object[] {
                        name,
                        mima}, callback, asyncState);
        }
        
        /// <remarks/>
        public bool Endregedit(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/check", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool check(string name, string mima) {
            object[] results = this.Invoke("check", new object[] {
                        name,
                        mima});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult Begincheck(string name, string mima, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("check", new object[] {
                        name,
                        mima}, callback, asyncState);
        }
        
        /// <remarks/>
        public bool Endcheck(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/sele", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet sele(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, [System.Xml.Serialization.XmlElementAttribute("check")] string check1) {
            object[] results = this.Invoke("sele", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1});
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public System.IAsyncResult Beginsele(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, string check1, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("sele", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1}, callback, asyncState);
        }
        
        /// <remarks/>
        public System.Data.DataSet Endsele(System.IAsyncResult asyncResult) {
            object[] results = this.EndInvoke(asyncResult);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/insert", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void insert(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, string bianhao) {
            this.Invoke("insert", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        bianhao});
        }
        
        /// <remarks/>
        public System.IAsyncResult Begininsert(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, string bianhao, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("insert", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        bianhao}, callback, asyncState);
        }
        
        /// <remarks/>
        public void Endinsert(System.IAsyncResult asyncResult) {
            this.EndInvoke(asyncResult);
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/dele", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void dele(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, [System.Xml.Serialization.XmlElementAttribute("check")] string check1) {
            this.Invoke("dele", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1});
        }
        
        /// <remarks/>
        public System.IAsyncResult Begindele(string xingming, string xuehao, string kecheng, string fenshu, string xuefen, string check1, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("dele", new object[] {
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1}, callback, asyncState);
        }
        
        /// <remarks/>
        public void Enddele(System.IAsyncResult asyncResult) {
            this.EndInvoke(asyncResult);
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/update", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void update(string xingming1, string xuehao1, string kecheng1, string fenshu1, string xuefen1, string bianhao1, string xingming, string xuehao, string kecheng, string fenshu, string xuefen, [System.Xml.Serialization.XmlElementAttribute("check")] string check1) {
            this.Invoke("update", new object[] {
                        xingming1,
                        xuehao1,
                        kecheng1,
                        fenshu1,
                        xuefen1,
                        bianhao1,
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1});
        }
        
        /// <remarks/>
        public System.IAsyncResult Beginupdate(string xingming1, string xuehao1, string kecheng1, string fenshu1, string xuefen1, string bianhao1, string xingming, string xuehao, string kecheng, string fenshu, string xuefen, string check1, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("update", new object[] {
                        xingming1,
                        xuehao1,
                        kecheng1,
                        fenshu1,
                        xuefen1,
                        bianhao1,
                        xingming,
                        xuehao,
                        kecheng,
                        fenshu,
                        xuefen,
                        check1}, callback, asyncState);
        }
        
        /// <remarks/>
        public void Endupdate(System.IAsyncResult asyncResult) {
            this.EndInvoke(asyncResult);
        }
    }
}

⌨️ 快捷键说明

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