Esempio n. 1
0
 protected ServiceClientBase(Type serviceContract, string endpointConfigurationName)
 {
     m_serviceContract = serviceContract;
     m_clientImpl      = FindConstructor <Ctor1>(typeof(string))(endpointConfigurationName);
     SetupBehaviors();
 }
Esempio n. 2
0
 protected ServiceClientBase(Type serviceContract, string endpointConfigurationName, EndpointAddress remoteAddress)
 {
     m_serviceContract = serviceContract;
     m_clientImpl      = FindConstructor <Ctor3>(typeof(string), typeof(EndpointAddress))(endpointConfigurationName, remoteAddress);
     SetupBehaviors();
 }
Esempio n. 3
0
 protected ServiceClientBase(Type serviceContract, Binding binding, EndpointAddress remoteAddress)
 {
     m_serviceContract = serviceContract;
     m_clientImpl      = FindConstructor <Ctor4>(typeof(Binding), typeof(EndpointAddress))(binding, remoteAddress);
     SetupBehaviors();
 }