FaultsTesterProxy.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:2.0.50727.1433
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Proxy.MonoTests.Features.Client
  11. {
  12. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  13. [System.ServiceModel.ServiceContractAttribute (Namespace = "http://MonoTests.Features.Contracts", ConfigurationName = "IFaultsTesterContract")]
  14. public interface IFaultsTesterContract
  15. {
  16. [System.ServiceModel.OperationContractAttribute (Action = "http://MonoTests.Features.Contracts/IFaultsTesterContract/FaultMethod")]
  17. void FaultMethod (string faultText);
  18. }
  19. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  20. public interface IFaultsTesterContractChannel : IFaultsTesterContract, System.ServiceModel.IClientChannel
  21. {
  22. }
  23. [System.Diagnostics.DebuggerStepThroughAttribute ()]
  24. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  25. public partial class FaultsTesterContractClient : System.ServiceModel.ClientBase<IFaultsTesterContract>, IFaultsTesterContract
  26. {
  27. public FaultsTesterContractClient ()
  28. {
  29. }
  30. public FaultsTesterContractClient (string endpointConfigurationName) :
  31. base (endpointConfigurationName)
  32. {
  33. }
  34. public FaultsTesterContractClient (string endpointConfigurationName, string remoteAddress) :
  35. base (endpointConfigurationName, remoteAddress)
  36. {
  37. }
  38. public FaultsTesterContractClient (string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  39. base (endpointConfigurationName, remoteAddress)
  40. {
  41. }
  42. public FaultsTesterContractClient (System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  43. base (binding, remoteAddress)
  44. {
  45. }
  46. public void FaultMethod (string faultText)
  47. {
  48. base.Channel.FaultMethod (faultText);
  49. }
  50. }
  51. //====================
  52. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  53. [System.ServiceModel.ServiceContractAttribute (Namespace = "http://MonoTests.Features.Contracts", ConfigurationName = "IFaultsTesterContractIncludeDetails")]
  54. public interface IFaultsTesterContractIncludeDetails
  55. {
  56. [System.ServiceModel.OperationContractAttribute (Action = "http://MonoTests.Features.Contracts/IFaultsTesterContractIncludeDetails/FaultMethod")]
  57. void FaultMethod (string faultText);
  58. }
  59. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  60. public interface IFaultsTesterContractChannelIncludeDetails : IFaultsTesterContractIncludeDetails, System.ServiceModel.IClientChannel
  61. {
  62. }
  63. [System.Diagnostics.DebuggerStepThroughAttribute ()]
  64. [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.ServiceModel", "3.0.0.0")]
  65. public partial class FaultsTesterContractClientIncludeDetails : System.ServiceModel.ClientBase<IFaultsTesterContractIncludeDetails>, IFaultsTesterContractIncludeDetails
  66. {
  67. public FaultsTesterContractClientIncludeDetails ()
  68. {
  69. }
  70. public FaultsTesterContractClientIncludeDetails (string endpointConfigurationName) :
  71. base (endpointConfigurationName)
  72. {
  73. }
  74. public FaultsTesterContractClientIncludeDetails (string endpointConfigurationName, string remoteAddress) :
  75. base (endpointConfigurationName, remoteAddress)
  76. {
  77. }
  78. public FaultsTesterContractClientIncludeDetails (string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  79. base (endpointConfigurationName, remoteAddress)
  80. {
  81. }
  82. public FaultsTesterContractClientIncludeDetails (System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  83. base (binding, remoteAddress)
  84. {
  85. }
  86. public void FaultMethod (string faultText)
  87. {
  88. base.Channel.FaultMethod (faultText);
  89. }
  90. }
  91. }