Esempio n. 1
0
 public SimpleServicesvcClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(SimpleServicesvcClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Esempio n. 2
0
 public SimpleServicesvcClient(EndpointConfiguration endpointConfiguration) :
     base(SimpleServicesvcClient.GetBindingForEndpoint(endpointConfiguration), SimpleServicesvcClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Esempio n. 3
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(SimpleServicesvcClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc));
 }
Esempio n. 4
0
 public SimpleServicesvcClient() :
     base(SimpleServicesvcClient.GetDefaultBinding(), SimpleServicesvcClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Esempio n. 5
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(SimpleServicesvcClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc));
 }