cominterface.cs

来自「ASP.NET的一些开发实例,有论坛管理系统等」· CS 代码 · 共 119 行

CS
119
字号
//------------------------------------------------------------------------------
// <autogenerated>
//     This code was generated by a tool.
//     Runtime Version: 1.0.3705.0
//
//     Changes to this file may cause incorrect behavior and will be lost if 
//     the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------

// 
// This source code was auto-generated by wsdl, Version=1.0.3705.0.
// 
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="COMInterfaceSoap", Namespace="http://tempuri.org/")]
public class COMInterface : System.Web.Services.Protocols.SoapHttpClientProtocol {
    
    /// <remarks/>
    public COMInterface() {
        this.Url = "http://localhost/WhiteForumServer/BdStudioSoft/COMInterface.asmx";
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsInterfaceTitle", 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 DsInterfaceTitle(string m_num, string FaceName) {
        object[] results = this.Invoke("DsInterfaceTitle", new object[] {
                    m_num,
                    FaceName});
        return ((System.Data.DataSet)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginDsInterfaceTitle(string m_num, string FaceName, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("DsInterfaceTitle", new object[] {
                    m_num,
                    FaceName}, callback, asyncState);
    }
    
    /// <remarks/>
    public System.Data.DataSet EndDsInterfaceTitle(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((System.Data.DataSet)(results[0]));
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsInterfaceData", 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 DsInterfaceData(string m_num, string FaceName) {
        object[] results = this.Invoke("DsInterfaceData", new object[] {
                    m_num,
                    FaceName});
        return ((System.Data.DataSet)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginDsInterfaceData(string m_num, string FaceName, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("DsInterfaceData", new object[] {
                    m_num,
                    FaceName}, callback, asyncState);
    }
    
    /// <remarks/>
    public System.Data.DataSet EndDsInterfaceData(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((System.Data.DataSet)(results[0]));
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/CreateSqlFromInterface", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public string CreateSqlFromInterface(string m_num, string FaceName) {
        object[] results = this.Invoke("CreateSqlFromInterface", new object[] {
                    m_num,
                    FaceName});
        return ((string)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginCreateSqlFromInterface(string m_num, string FaceName, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("CreateSqlFromInterface", new object[] {
                    m_num,
                    FaceName}, callback, asyncState);
    }
    
    /// <remarks/>
    public string EndCreateSqlFromInterface(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((string)(results[0]));
    }
    
    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/CreateDataSetFromSql", 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 CreateDataSetFromSql(string SqlString) {
        object[] results = this.Invoke("CreateDataSetFromSql", new object[] {
                    SqlString});
        return ((System.Data.DataSet)(results[0]));
    }
    
    /// <remarks/>
    public System.IAsyncResult BeginCreateDataSetFromSql(string SqlString, System.AsyncCallback callback, object asyncState) {
        return this.BeginInvoke("CreateDataSetFromSql", new object[] {
                    SqlString}, callback, asyncState);
    }
    
    /// <remarks/>
    public System.Data.DataSet EndCreateDataSetFromSql(System.IAsyncResult asyncResult) {
        object[] results = this.EndInvoke(asyncResult);
        return ((System.Data.DataSet)(results[0]));
    }
}

⌨️ 快捷键说明

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