Пример #1
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(MyPhotosWcfClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IMyPhotosWcf));
 }
Пример #2
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(MyPhotosWcfClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IMyPhotosWcf));
 }
Пример #3
0
 public MyPhotosWcfClient(EndpointConfiguration endpointConfiguration) :
     base(MyPhotosWcfClient.GetBindingForEndpoint(endpointConfiguration), MyPhotosWcfClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Пример #4
0
 public MyPhotosWcfClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(MyPhotosWcfClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Пример #5
0
 public MyPhotosWcfClient() :
     base(MyPhotosWcfClient.GetDefaultBinding(), MyPhotosWcfClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IMyPhotosWcf.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }