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
11
12
13 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
14 [System.ServiceModel.ServiceContractAttribute(Namespace="http://www.gotjeep.net/tech", ConfigurationName="GotJeepApproachAngleCalculatorPortType")]
15 public interface GotJeepApproachAngleCalculatorPortType
16 {
17
18 [System.ServiceModel.OperationContractAttribute(Action="http://www.gotjeep.net/services/approachAngleService.php/CalculateApproachAngle", ReplyAction="*")]
19 [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, Use=System.ServiceModel.OperationFormatUse.Encoded)]
20 [return: System.ServiceModel.MessageParameterAttribute(Name="return")]
21 decimal CalculateApproachAngle(decimal height, decimal diameter, decimal distance);
22 }
23
24 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
25 public interface GotJeepApproachAngleCalculatorPortTypeChannel : GotJeepApproachAngleCalculatorPortType, System.ServiceModel.IClientChannel
26 {
27 }
28
29 [System.Diagnostics.DebuggerStepThroughAttribute()]
30 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
31 public partial class GotJeepApproachAngleCalculatorPortTypeClient : System.ServiceModel.ClientBase<GotJeepApproachAngleCalculatorPortType>, GotJeepApproachAngleCalculatorPortType
32 {
33
34 public GotJeepApproachAngleCalculatorPortTypeClient()
35 {
36 }
37
38 public GotJeepApproachAngleCalculatorPortTypeClient(string endpointConfigurationName) :
39 base(endpointConfigurationName)
40 {
41 }
42
43 public GotJeepApproachAngleCalculatorPortTypeClient(string endpointConfigurationName, string remoteAddress) :
44 base(endpointConfigurationName, remoteAddress)
45 {
46 }
47
48 public GotJeepApproachAngleCalculatorPortTypeClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
49 base(endpointConfigurationName, remoteAddress)
50 {
51 }
52
53 public GotJeepApproachAngleCalculatorPortTypeClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
54 base(binding, remoteAddress)
55 {
56 }
57
58 public decimal CalculateApproachAngle(decimal height, decimal diameter, decimal distance)
59 {
60 return base.Channel.CalculateApproachAngle(height, diameter, distance);
61 }
62 }