Exemplo 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);
 }
Exemplo n.º 2
0
 public SimpleServicesvcClient(EndpointConfiguration endpointConfiguration) :
     base(SimpleServicesvcClient.GetBindingForEndpoint(endpointConfiguration), SimpleServicesvcClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Exemplo n.º 3
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(SimpleServicesvcClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc));
 }
Exemplo n.º 4
0
 public SimpleServicesvcClient() :
     base(SimpleServicesvcClient.GetDefaultBinding(), SimpleServicesvcClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Exemplo n.º 5
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(SimpleServicesvcClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_ISimpleServicesvc));
 }