//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.237 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ namespace QMFrameWork.WebServiceHost.BarCodePrintService { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.ServiceModel.ServiceContractAttribute(Namespace="http://Microsoft.ServiceModel.Samples", ConfigurationName="BarCodePrintService.IBarCodePrint")] public interface IBarCodePrint { [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IBarCodePrint/Print", ReplyAction="http://Microsoft.ServiceModel.Samples/IBarCodePrint/PrintResponse")] bool Print(string[] barCode, string barCodeXmlName); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public interface IBarCodePrintChannel : QMFrameWork.WebServiceHost.BarCodePrintService.IBarCodePrint, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public partial class BarCodePrintClient : System.ServiceModel.ClientBase, QMFrameWork.WebServiceHost.BarCodePrintService.IBarCodePrint { public BarCodePrintClient() { } public BarCodePrintClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public BarCodePrintClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public BarCodePrintClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public BarCodePrintClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public bool Print(string[] barCode, string barCodeXmlName) { return base.Channel.Print(barCode, barCodeXmlName); } } }