Reference.cs 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.18444
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService {
  11. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  12. [System.ServiceModel.ServiceContractAttribute(Namespace="Dongke.IBOSS.PRD.WCF.Contracts", ConfigurationName="DKIBOSSPRDService.IDKIBOSSPRD")]
  13. public interface IDKIBOSSPRD {
  14. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/GetServiceState", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/GetServiceStateResponse")]
  15. bool GetServiceState();
  16. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLogin", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginResponse")]
  17. Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLogin(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity);
  18. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginRefresh", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginRefreshResponse")]
  19. Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLoginRefresh(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity);
  20. [System.ServiceModel.OperationContractAttribute(IsOneWay=true, Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/Logout")]
  21. void Logout(int userID);
  22. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/IsNeedUpgrade", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/IsNeedUpgradeResponse")]
  23. Dongke.IBOSS.PRD.WCF.DataModels.NeedUpgradeResultEntity IsNeedUpgrade(string version);
  24. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DownloadUpgradeFile", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DownloadUpgradeFileResponse")]
  25. byte[] DownloadUpgradeFile();
  26. }
  27. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  28. public interface IDKIBOSSPRDChannel : Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService.IDKIBOSSPRD, System.ServiceModel.IClientChannel {
  29. }
  30. [System.Diagnostics.DebuggerStepThroughAttribute()]
  31. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  32. public partial class DKIBOSSPRDClient : System.ServiceModel.ClientBase<Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService.IDKIBOSSPRD>, Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService.IDKIBOSSPRD {
  33. public DKIBOSSPRDClient() {
  34. }
  35. public DKIBOSSPRDClient(string endpointConfigurationName) :
  36. base(endpointConfigurationName) {
  37. }
  38. public DKIBOSSPRDClient(string endpointConfigurationName, string remoteAddress) :
  39. base(endpointConfigurationName, remoteAddress) {
  40. }
  41. public DKIBOSSPRDClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  42. base(endpointConfigurationName, remoteAddress) {
  43. }
  44. public DKIBOSSPRDClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  45. base(binding, remoteAddress) {
  46. }
  47. public bool GetServiceState() {
  48. return base.Channel.GetServiceState();
  49. }
  50. public Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLogin(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity) {
  51. return base.Channel.DoLogin(requestEntity);
  52. }
  53. public Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLoginRefresh(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity) {
  54. return base.Channel.DoLoginRefresh(requestEntity);
  55. }
  56. public void Logout(int userID) {
  57. base.Channel.Logout(userID);
  58. }
  59. public Dongke.IBOSS.PRD.WCF.DataModels.NeedUpgradeResultEntity IsNeedUpgrade(string version) {
  60. return base.Channel.IsNeedUpgrade(version);
  61. }
  62. public byte[] DownloadUpgradeFile() {
  63. return base.Channel.DownloadUpgradeFile();
  64. }
  65. }
  66. }