//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.17929 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ namespace QMAPP.ServicesAgent.CenterGeneralService { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="CenterGeneralService.IGeneralService")] public interface IGeneralService { [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IGeneralService/RecevieRequest", ReplyAction="http://tempuri.org/IGeneralService/RecevieRequestResponse")] string RecevieRequest(string request); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IGeneralService/GetServiceList", ReplyAction="http://tempuri.org/IGeneralService/GetServiceListResponse")] string[] GetServiceList(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IGeneralService/RefreshDataLock", ReplyAction="http://tempuri.org/IGeneralService/RefreshDataLockResponse")] void RefreshDataLock(); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public interface IGeneralServiceChannel : QMAPP.ServicesAgent.CenterGeneralService.IGeneralService, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public partial class GeneralServiceClient : System.ServiceModel.ClientBase, QMAPP.ServicesAgent.CenterGeneralService.IGeneralService { public GeneralServiceClient() { } public GeneralServiceClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public GeneralServiceClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public GeneralServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public GeneralServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public string RecevieRequest(string request) { return base.Channel.RecevieRequest(request); } public string[] GetServiceList() { return base.Channel.GetServiceList(); } public void RefreshDataLock() { base.Channel.RefreshDataLock(); } } }