Reference.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.18444
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Dongke.IBOSS.PRD.WCF.Proxys.CMNModuleService {
  11. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  12. [System.ServiceModel.ServiceContractAttribute(Namespace="Dongke.IBOSS.PRD.WCF.Contracts", ConfigurationName="CMNModuleService.ICMNModule")]
  13. public interface ICMNModule {
  14. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/ICMNModule/Test", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/ICMNModule/TestResponse")]
  15. string Test();
  16. }
  17. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  18. public interface ICMNModuleChannel : Dongke.IBOSS.PRD.WCF.Proxys.CMNModuleService.ICMNModule, System.ServiceModel.IClientChannel {
  19. }
  20. [System.Diagnostics.DebuggerStepThroughAttribute()]
  21. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  22. public partial class CMNModuleClient : System.ServiceModel.ClientBase<Dongke.IBOSS.PRD.WCF.Proxys.CMNModuleService.ICMNModule>, Dongke.IBOSS.PRD.WCF.Proxys.CMNModuleService.ICMNModule {
  23. public CMNModuleClient() {
  24. }
  25. public CMNModuleClient(string endpointConfigurationName) :
  26. base(endpointConfigurationName) {
  27. }
  28. public CMNModuleClient(string endpointConfigurationName, string remoteAddress) :
  29. base(endpointConfigurationName, remoteAddress) {
  30. }
  31. public CMNModuleClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  32. base(endpointConfigurationName, remoteAddress) {
  33. }
  34. public CMNModuleClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  35. base(binding, remoteAddress) {
  36. }
  37. public string Test() {
  38. return base.Channel.Test();
  39. }
  40. }
  41. }