54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
| //------------------------------------------------------------------------------
 | |
| // <auto-generated>
 | |
| //     此代码由工具生成。
 | |
| //     运行时版本:4.0.30319.42000
 | |
| //
 | |
| //     对此文件的更改可能会导致不正确的行为,并且如果
 | |
| //     重新生成代码,这些更改将会丢失。
 | |
| // </auto-generated>
 | |
| //------------------------------------------------------------------------------
 | |
| 
 | |
| namespace DeiNiu.wms.win.ServiceReferenceConfiguration {
 | |
|     
 | |
|     
 | |
|     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
 | |
|     [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceReferenceConfiguration.IConfiguration")]
 | |
|     public interface IConfiguration {
 | |
|         
 | |
|         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IConfiguration/getDbConn", ReplyAction="http://tempuri.org/IConfiguration/getDbConnResponse")]
 | |
|         string getDbConn();
 | |
|     }
 | |
|     
 | |
|     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
 | |
|     public interface IConfigurationChannel : DeiNiu.wms.win.ServiceReferenceConfiguration.IConfiguration, System.ServiceModel.IClientChannel {
 | |
|     }
 | |
|     
 | |
|     [System.Diagnostics.DebuggerStepThroughAttribute()]
 | |
|     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
 | |
|     public partial class ConfigurationClient : System.ServiceModel.ClientBase<DeiNiu.wms.win.ServiceReferenceConfiguration.IConfiguration>, DeiNiu.wms.win.ServiceReferenceConfiguration.IConfiguration {
 | |
|         
 | |
|         public ConfigurationClient() {
 | |
|         }
 | |
|         
 | |
|         public ConfigurationClient(string endpointConfigurationName) : 
 | |
|                 base(endpointConfigurationName) {
 | |
|         }
 | |
|         
 | |
|         public ConfigurationClient(string endpointConfigurationName, string remoteAddress) : 
 | |
|                 base(endpointConfigurationName, remoteAddress) {
 | |
|         }
 | |
|         
 | |
|         public ConfigurationClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
 | |
|                 base(endpointConfigurationName, remoteAddress) {
 | |
|         }
 | |
|         
 | |
|         public ConfigurationClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
 | |
|                 base(binding, remoteAddress) {
 | |
|         }
 | |
|         
 | |
|         public string getDbConn() {
 | |
|             return base.Channel.getDbConn();
 | |
|         }
 | |
|     }
 | |
| }
 |