reference.cs

来自「asp做的新闻系统」· CS 代码 · 共 55 行

CS
55
字号
//------------------------------------------------------------------------------
// <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 AspCool.WebExpert.SaveService {
    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="UploadServiceSoap", Namespace="http://tempuri.org/")]
    public class UploadService : System.Web.Services.Protocols.SoapHttpClientProtocol {
        
        /// <remarks/>
        public UploadService() {
            this.Url = "http://localhost/WebExpert/Upload/UploadService.asmx";
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/SaveFile", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void SaveFile([System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] System.Byte[] fileContent, string fileName) {
            this.Invoke("SaveFile", new object[] {
                        fileContent,
                        fileName});
        }
        
        /// <remarks/>
        public System.IAsyncResult BeginSaveFile(System.Byte[] fileContent, string fileName, System.AsyncCallback callback, object asyncState) {
            return this.BeginInvoke("SaveFile", new object[] {
                        fileContent,
                        fileName}, callback, asyncState);
        }
        
        /// <remarks/>
        public void EndSaveFile(System.IAsyncResult asyncResult) {
            this.EndInvoke(asyncResult);
        }
    }
}

⌨️ 快捷键说明

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