File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System . ServiceModel ;
2
+ using System . ServiceModel . Channels ;
3
+
4
+ // ReSharper disable once CheckNamespace
5
+ namespace ServiceReference ;
6
+
7
+ public partial class CalculatorSoapClient
8
+ {
9
+ public static Binding DefaultBinding { get ; } = GetBindingForEndpoint ( EndpointConfiguration . CalculatorSoap ) ;
10
+
11
+ public static EndpointAddress DefaultEndpointAddress { get ; } = GetEndpointAddress ( EndpointConfiguration . CalculatorSoap ) ;
12
+ }
Original file line number Diff line number Diff line change
1
+ using System . ServiceModel ;
2
+ using System . ServiceModel . Channels ;
3
+
4
+ // ReSharper disable once CheckNamespace
5
+ namespace ServiceReference ;
6
+
7
+ public partial class HelloEndpointClient
8
+ {
9
+ public static Binding DefaultBinding { get ; } = GetDefaultBinding ( ) ;
10
+
11
+ public static EndpointAddress DefaultEndpointAddress { get ; } = GetDefaultEndpointAddress ( ) ;
12
+ }
You can’t perform that action at this time.
0 commit comments