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

📄 datatransfersclient.cs

📁 WCF大数据量传输解决方案源码下载,WCF大数据量传输解决方案源码下载
💻 CS
字号:
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行库版本:2.0.50727.1433
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------



[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="http://DataTransfers/Demao", ConfigurationName="IDataTransfers")]
public interface IDataTransfers
{
    
    [System.ServiceModel.OperationContractAttribute(Action="http://DataTransfers/Demao/IDataTransfers/GetAllBuffer", ReplyAction="http://DataTransfers/Demao/IDataTransfers/GetAllBufferResponse")]
    byte[] GetAllBuffer();
    
    [System.ServiceModel.OperationContractAttribute(Action="http://DataTransfers/Demao/IDataTransfers/SetBufferLength", ReplyAction="http://DataTransfers/Demao/IDataTransfers/SetBufferLengthResponse")]
    void SetBufferLength(int length);
    
    [System.ServiceModel.OperationContractAttribute(Action="http://DataTransfers/Demao/IDataTransfers/ReadNextBuffer", ReplyAction="http://DataTransfers/Demao/IDataTransfers/ReadNextBufferResponse")]
    bool ReadNextBuffer();
    
    [System.ServiceModel.OperationContractAttribute(Action="http://DataTransfers/Demao/IDataTransfers/GetCurrentBuffer", ReplyAction="http://DataTransfers/Demao/IDataTransfers/GetCurrentBufferResponse")]
    byte[] GetCurrentBuffer();
}

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public interface IDataTransfersChannel : IDataTransfers, System.ServiceModel.IClientChannel
{
}

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public partial class DataTransfersClient : System.ServiceModel.ClientBase<IDataTransfers>, IDataTransfers
{
    
    public DataTransfersClient()
    {
    }
    
    public DataTransfersClient(string endpointConfigurationName) : 
            base(endpointConfigurationName)
    {
    }
    
    public DataTransfersClient(string endpointConfigurationName, string remoteAddress) : 
            base(endpointConfigurationName, remoteAddress)
    {
    }
    
    public DataTransfersClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
            base(endpointConfigurationName, remoteAddress)
    {
    }
    
    public DataTransfersClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
            base(binding, remoteAddress)
    {
    }
    
    public byte[] GetAllBuffer()
    {
        return base.Channel.GetAllBuffer();
    }
    
    public void SetBufferLength(int length)
    {
        base.Channel.SetBufferLength(length);
    }
    
    public bool ReadNextBuffer()
    {
        return base.Channel.ReadNextBuffer();
    }
    
    public byte[] GetCurrentBuffer()
    {
        return base.Channel.GetCurrentBuffer();
    }
}

⌨️ 快捷键说明

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